diff options
author | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-08-28 23:13:38 -0700 |
---|---|---|
committer | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-08-28 23:13:38 -0700 |
commit | 4fe2619c267b0330dc3ceaca761256794094d3cc (patch) | |
tree | d6ccb34ea301b01515bc5ae91f873ee61ba1e60e /Test/dafny4 | |
parent | 6b1085d784e3773ad9ccbae5bd6b158c97095edc (diff) |
Fix some tests by locally disabling auto triggers
Diffstat (limited to 'Test/dafny4')
-rw-r--r-- | Test/dafny4/NipkowKlein-chapter7.dfy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Test/dafny4/NipkowKlein-chapter7.dfy b/Test/dafny4/NipkowKlein-chapter7.dfy index e694fc4b..aae94550 100644 --- a/Test/dafny4/NipkowKlein-chapter7.dfy +++ b/Test/dafny4/NipkowKlein-chapter7.dfy @@ -1,4 +1,4 @@ -// RUN: %dafny /compile:0 /rprint:"%t.rprint" "%s" > "%t"
+// RUN: %dafny /compile:0 /rprint:"%t.rprint" /autoTriggers:0 "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
// This file is a Dafny encoding of chapter 7 from "Concrete Semantics: With Isabelle/HOL" by
@@ -360,3 +360,5 @@ lemma lemma_7_18(c: com, s: state) BigStep_SmallStepStar_Same(c, s, s');
}
}
+
+// Autotriggers:0 added as this file relies on proving a property of the form body(f) == f
|