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 /src/test/burn/TestExe/Program.cs | |
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
Diffstat (limited to 'src/test/burn/TestExe/Program.cs')
-rw-r--r-- | src/test/burn/TestExe/Program.cs | 6 |
1 files changed, 5 insertions, 1 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 |