summaryrefslogtreecommitdiff
path: root/BCT/Test/test1/runtest.bat
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/Test/test1/runtest.bat')
-rw-r--r--BCT/Test/test1/runtest.bat17
1 files changed, 0 insertions, 17 deletions
diff --git a/BCT/Test/test1/runtest.bat b/BCT/Test/test1/runtest.bat
deleted file mode 100644
index cff01f44..00000000
--- a/BCT/Test/test1/runtest.bat
+++ /dev/null
@@ -1,17 +0,0 @@
-@echo off
-setlocal
-
-set BCTDIR=..\..\Binaries
-set BEXE=%BCTDIR%\BytecodeTranslator.exe
-set BOOGIE=..\..\..\Binaries\Boogie.exe
-
-if not exist Output.txt goto justRunTest
-del Output.txt
-
-:justRunTest
-for %%f in (*.cs) do (
- echo -------------------- %%f --------------------
- csc /nologo /t:library /debug %%~nf.cs
- %BEXE% %%~nf.dll
- %BOOGIE% %%~nf.bpl >> Output.txt
-)