summaryrefslogtreecommitdiff
path: root/Test/VSComp2010/runtest.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Test/VSComp2010/runtest.bat')
-rw-r--r--Test/VSComp2010/runtest.bat15
1 files changed, 15 insertions, 0 deletions
diff --git a/Test/VSComp2010/runtest.bat b/Test/VSComp2010/runtest.bat
new file mode 100644
index 00000000..e39abe7d
--- /dev/null
+++ b/Test/VSComp2010/runtest.bat
@@ -0,0 +1,15 @@
+@echo off
+setlocal
+
+set BOOGIEDIR=..\..\Binaries
+set DAFNY_EXE=%BOOGIEDIR%\Dafny.exe
+set BPLEXE=%BOOGIEDIR%\Boogie.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% %* %%f
+)