summaryrefslogtreecommitdiff
path: root/BCT
diff options
context:
space:
mode:
authorGravatar mikebarnett <unknown>2010-04-19 03:04:22 +0000
committerGravatar mikebarnett <unknown>2010-04-19 03:04:22 +0000
commit65515f184fb181b4e6a3286f505607efde228633 (patch)
tree2562835ff30c8a5ebbe0e3342e78c8885465be3f /BCT
parent2ee2d80aa5dc7e829d88eb9a79c55a0d8d7bcd0d (diff)
Forgotten to turn the echo off.
Diffstat (limited to 'BCT')
-rw-r--r--BCT/Test/runtest.bat2
-rw-r--r--BCT/Test/test0/runtest.bat4
2 files changed, 3 insertions, 3 deletions
diff --git a/BCT/Test/runtest.bat b/BCT/Test/runtest.bat
index 21a71139..5002d0b3 100644
--- a/BCT/Test/runtest.bat
+++ b/BCT/Test/runtest.bat
@@ -1,4 +1,4 @@
-rem @echo off
+@echo off
rem Usage: runtest.bat <dir>
if "%1" == "" goto noDirSpecified
if not exist %1\nul goto noDirExists
diff --git a/BCT/Test/test0/runtest.bat b/BCT/Test/test0/runtest.bat
index b0f8950e..f9b744f0 100644
--- a/BCT/Test/test0/runtest.bat
+++ b/BCT/Test/test0/runtest.bat
@@ -1,4 +1,4 @@
-REM @echo off
+@echo off
setlocal
set BCTDIR=..\..\Binaries
@@ -10,7 +10,7 @@ del Output.txt
:justRunTest
for %%f in (*.cs) do (
echo -------------------- %%f --------------------
- csc /t:library /debug %%~nf.cs
+ csc /nologo /t:library /debug %%~nf.cs
%BEXE% %%~nf.dll
type %%~nf.bpl >> Output.txt
)