summaryrefslogtreecommitdiff
path: root/Test/vacid0
diff options
context:
space:
mode:
authorGravatar afd <unknown>2012-06-27 14:49:15 +0100
committerGravatar afd <unknown>2012-06-27 14:49:15 +0100
commit25c81e8393f0f9d643c223cd3e7f6a734ec65ff5 (patch)
treefb816688709524ef44134a9a4397f7abdcd0e267 /Test/vacid0
parent65d7648ad268f8670246be96c76afdf53ccae871 (diff)
Undo bad merge.
Diffstat (limited to 'Test/vacid0')
-rw-r--r--Test/vacid0/AnswerNoRuntimeChecking9
-rw-r--r--Test/vacid0/runtestNoRuntimeChecking.bat27
-rw-r--r--Test/vacid0/runtestRuntimeChecking.bat32
3 files changed, 0 insertions, 68 deletions
diff --git a/Test/vacid0/AnswerNoRuntimeChecking b/Test/vacid0/AnswerNoRuntimeChecking
deleted file mode 100644
index a1f7f57b..00000000
--- a/Test/vacid0/AnswerNoRuntimeChecking
+++ /dev/null
@@ -1,9 +0,0 @@
-
--------------------- LazyInitArray --------------------
-Compiled assembly into LazyInitArray.dll
-
--------------------- SparseArray --------------------
-Compiled assembly into SparseArray.dll
-
--------------------- Composite --------------------
-Compiled assembly into Composite.exe
diff --git a/Test/vacid0/runtestNoRuntimeChecking.bat b/Test/vacid0/runtestNoRuntimeChecking.bat
deleted file mode 100644
index 3a7befa2..00000000
--- a/Test/vacid0/runtestNoRuntimeChecking.bat
+++ /dev/null
@@ -1,27 +0,0 @@
-@echo off
-setlocal
-
-set BOOGIEDIR=..\..\Binaries
-set DAFNY_EXE=%BOOGIEDIR%\Dafny.exe
-set BPLEXE=%BOOGIEDIR%\Boogie.exe
-
-for %%f in (LazyInitArray SparseArray Composite) do (
- echo.
- echo -------------------- %%f --------------------
- %DAFNY_EXE% /nologo /errorTrace:0 /verification:0 /runtimeChecking:0 /compile:2 %* %%f.dfy
- if exist %%f.cs. (
- del %%f.cs
- )
- if exist %%f.exe. (
- del %%f.exe
- )
- if exist %%f.dll. (
- del %%f.dll
- )
- if exist %%f.pdb. (
- del %%f.pdb
- )
- if exist %%f.pdb.original. (
- del %%f.pdb.original
- )
-)
diff --git a/Test/vacid0/runtestRuntimeChecking.bat b/Test/vacid0/runtestRuntimeChecking.bat
deleted file mode 100644
index 077c1002..00000000
--- a/Test/vacid0/runtestRuntimeChecking.bat
+++ /dev/null
@@ -1,32 +0,0 @@
-@echo off
-setlocal
-
-set BOOGIEDIR=..\..\Binaries
-set DAFNY_EXE=%BOOGIEDIR%\Dafny.exe
-set BPLEXE=%BOOGIEDIR%\Boogie.exe
-
-REM to implement:
-REM LazyInitArray: ghost state
-REM SparseArray : ghost state
-REM Composite : ghost state
-
-for %%f in () do (
- echo.
- echo -------------------- %%f --------------------
- %DAFNY_EXE% /nologo /errorTrace:0 /verification:0 /runtimeChecking:1 /compile:2 %* %%f.dfy
- if exist %%f.cs. (
- del %%f.cs
- )
- if exist %%f.exe. (
- del %%f.exe
- )
- if exist %%f.dll. (
- del %%f.dll
- )
- if exist %%f.pdb. (
- del %%f.pdb
- )
- if exist %%f.pdb.original. (
- del %%f.pdb.original
- )
-)