summaryrefslogtreecommitdiff
path: root/Test/VSComp2010
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-12-18 11:14:19 +0100
committerGravatar wuestholz <unknown>2013-12-18 11:14:19 +0100
commit42d8a89ea406dc001dfd83af2e2d66f5ed813cc7 (patch)
tree8f070f6c83aaac5c52016756de016f83a98d2772 /Test/VSComp2010
parent7a4728f23ce2101c1cfb7668c350f5c9c8953f5c (diff)
Add support for the /verifySeparately flag in Boogie and change most tests to use it.
Diffstat (limited to 'Test/VSComp2010')
-rw-r--r--Test/VSComp2010/Answer10
-rw-r--r--Test/VSComp2010/runtest.bat16
2 files changed, 14 insertions, 12 deletions
diff --git a/Test/VSComp2010/Answer b/Test/VSComp2010/Answer
index 9a083fa3..ff491aa5 100644
--- a/Test/VSComp2010/Answer
+++ b/Test/VSComp2010/Answer
@@ -1,20 +1,20 @@
-
+
-------------------- Problem1-SumMax.dfy --------------------
Dafny program verifier finished with 4 verified, 0 errors
-
+
-------------------- Problem2-Invert.dfy --------------------
Dafny program verifier finished with 7 verified, 0 errors
-
+
-------------------- Problem3-FindZero.dfy --------------------
Dafny program verifier finished with 7 verified, 0 errors
-
+
-------------------- Problem4-Queens.dfy --------------------
Dafny program verifier finished with 9 verified, 0 errors
-
+
-------------------- Problem5-DoubleEndedQueue.dfy --------------------
Dafny program verifier finished with 21 verified, 0 errors
diff --git a/Test/VSComp2010/runtest.bat b/Test/VSComp2010/runtest.bat
index 4e6d170b..2cfcdafb 100644
--- a/Test/VSComp2010/runtest.bat
+++ b/Test/VSComp2010/runtest.bat
@@ -4,10 +4,12 @@ setlocal
set BINARIES=..\..\Binaries
set DAFNY_EXE=%BINARIES%\Dafny.exe
-for %%f in (Problem1-SumMax.dfy Problem2-Invert.dfy
- Problem3-FindZero.dfy Problem4-Queens.dfy
- Problem5-DoubleEndedQueue.dfy) do (
- echo.
- echo -------------------- %%f --------------------
- %DAFNY_EXE% /compile:0 %* %%f
-)
+%DAFNY_EXE% /compile:0 /verifySeparately %* Problem1-SumMax.dfy Problem2-Invert.dfy Problem3-FindZero.dfy Problem4-Queens.dfy Problem5-DoubleEndedQueue.dfy
+
+rem for %%f in (Problem1-SumMax.dfy Problem2-Invert.dfy
+rem Problem3-FindZero.dfy Problem4-Queens.dfy
+rem Problem5-DoubleEndedQueue.dfy) do (
+rem echo.
+rem echo -------------------- %%f --------------------
+rem %DAFNY_EXE% /compile:0 %* %%f
+rem )