diff options
author | Rob Mensching <rob@firegiant.com> | 2022-01-02 13:13:50 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-01-02 23:48:48 -0800 |
commit | c822e5d6960df95f9d4ec5208d65dec47f333461 (patch) | |
tree | 91d9032db3b477dacd1110d0fdbab4fb402ceaf7 | |
parent | 045eecc36260bfd9d184aedd4a6dc2ec0c5e9b1d (diff) | |
download | wix-c822e5d6960df95f9d4ec5208d65dec47f333461.tar.gz wix-c822e5d6960df95f9d4ec5208d65dec47f333461.tar.bz2 wix-c822e5d6960df95f9d4ec5208d65dec47f333461.zip |
Build burn integrate tests in parallel and reduce test noise
-rw-r--r-- | src/test/burn/TestExe/Program.cs | 6 | ||||
-rw-r--r-- | src/test/burn/test_burn.cmd | 4 |
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 | ||
14 | msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -bl:%_L%\test_burn_build.binlog || exit /b | 14 | msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -m -bl:%_L%\test_burn_build.binlog || exit /b |
15 | msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj -bl:%_L%\test_burn_data_build.binlog || exit /b | 15 | msbuild -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 | ||