summaryrefslogtreecommitdiff
path: root/BCT/Test/runtest.bat
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/Test/runtest.bat')
-rw-r--r--BCT/Test/runtest.bat36
1 files changed, 0 insertions, 36 deletions
diff --git a/BCT/Test/runtest.bat b/BCT/Test/runtest.bat
deleted file mode 100644
index 5002d0b3..00000000
--- a/BCT/Test/runtest.bat
+++ /dev/null
@@ -1,36 +0,0 @@
-@echo off
-rem Usage: runtest.bat <dir>
-if "%1" == "" goto noDirSpecified
-if not exist %1\nul goto noDirExists
-echo ----- Running regression test %1
-pushd %1
-if not exist runtest.bat goto noRunTest
-call runtest.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
-fc /W Answer Output.txt > nul
-:: if not errorlevel 1 goto passTest
-:: echo FAILED
-:: goto errorEnd
-
-:passTest
-echo Succeeded
-goto end
-
-:noDirSpecified
-echo runtest: Error: Syntax: runtest testDirectory [ additionalTestArguments ... ]
-goto errorEnd
-
-:noDirExists
-echo runtest: Error: There is no test directory %1
-goto errorEnd
-
-:noRunTest
-echo runtest: Error: no runtest.bat found in test directory %1
-goto errorEnd
-
-:errorEnd
-popd
-exit /b 1
-
-:end
-popd
-exit /b 0