diff options
Diffstat (limited to 'Test/dafny0/runtest.bat')
-rw-r--r-- | Test/dafny0/runtest.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Test/dafny0/runtest.bat b/Test/dafny0/runtest.bat index 1ccb292c..2055e283 100644 --- a/Test/dafny0/runtest.bat +++ b/Test/dafny0/runtest.bat @@ -29,6 +29,12 @@ for %%f in (TypeTests.dfy NatTypes.dfy SmallTests.dfy Definedness.dfy %DAFNY_EXE% /compile:0 /print:out.bpl.tmp /dprint:out.dfy.tmp %* %%f
)
+for %%f in (Superposition.dfy) do (
+ echo.
+ echo -------------------- %%f --------------------
+ %DAFNY_EXE% /compile:0 /print:out.bpl.tmp /dprint:out.dfy.tmp /tracePOs %* %%f
+)
+
for %%f in (SmallTests.dfy LetExpr.dfy) do (
echo.
echo -------------------- %%f --------------------
|