summaryrefslogtreecommitdiff
path: root/BCT/Test/test0/runtest.bat
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/Test/test0/runtest.bat')
-rw-r--r--BCT/Test/test0/runtest.bat19
1 files changed, 0 insertions, 19 deletions
diff --git a/BCT/Test/test0/runtest.bat b/BCT/Test/test0/runtest.bat
deleted file mode 100644
index f9b744f0..00000000
--- a/BCT/Test/test0/runtest.bat
+++ /dev/null
@@ -1,19 +0,0 @@
-@echo off
-setlocal
-
-set BCTDIR=..\..\Binaries
-set BEXE=%BCTDIR%\BytecodeTranslator.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
- type %%~nf.bpl >> Output.txt
-)
-
-
-