aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test/burn/TestExe/Program.cs6
-rw-r--r--src/test/burn/test_burn.cmd4
2 files changed, 7 insertions, 3 deletions
diff --git a/src/test/burn/TestExe/Program.cs b/src/test/burn/TestExe/Program.cs
index e92c413b..48e89be0 100644
--- a/src/test/burn/TestExe/Program.cs
+++ b/src/test/burn/TestExe/Program.cs
@@ -14,9 +14,13 @@ namespace TestExe
14 14
15 static int Main(string[] args) 15 static int Main(string[] args)
16 { 16 {
17 Usage();
18 tasks = TaskParser.ParseTasks(args); 17 tasks = TaskParser.ParseTasks(args);
19 18
19 if (tasks.Count == 0)
20 {
21 Usage();
22 }
23
20 foreach (Task t in tasks) 24 foreach (Task t in tasks)
21 { 25 {
22 // special case for the ExitCodeTask 26 // special case for the ExitCodeTask
diff --git a/src/test/burn/test_burn.cmd b/src/test/burn/test_burn.cmd
index af930247..72361e71 100644
--- a/src/test/burn/test_burn.cmd
+++ b/src/test/burn/test_burn.cmd
@@ -11,8 +11,8 @@
11 11
12@echo Burn integration tests %_C% 12@echo Burn integration tests %_C%
13 13
14msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -bl:%_L%\test_burn_build.binlog || exit /b 14msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -m -bl:%_L%\test_burn_build.binlog || exit /b
15msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj -bl:%_L%\test_burn_data_build.binlog || exit /b 15msbuild -t:Build -Restore TestData\TestData.proj -p:Configuration=%_C% -m -bl:%_L%\test_burn_data_build.binlog || exit /b
16 16
17@if not "%RuntimeTestsEnabled%"=="true" goto :LExit 17@if not "%RuntimeTestsEnabled%"=="true" goto :LExit
18 18