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, 19 insertions, 0 deletions
diff --git a/BCT/Test/test0/runtest.bat b/BCT/Test/test0/runtest.bat
new file mode 100644
index 00000000..b0f8950e
--- /dev/null
+++ b/BCT/Test/test0/runtest.bat
@@ -0,0 +1,19 @@
+REM @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 /t:library /debug %%~nf.cs
+ %BEXE% %%~nf.dll
+ type %%~nf.bpl >> Output.txt
+)
+
+
+