diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-16 16:19:16 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-17 01:01:59 -0700 |
commit | 8d6c4bf85755112eea638b1618b985d7acdad59d (patch) | |
tree | 508feed0d4258328d8e6089c714f970d3c1e027f /src/test/test.cmd | |
parent | c390a05fbb887b9f92b8c87d4b640942815d7a73 (diff) | |
download | wix-8d6c4bf85755112eea638b1618b985d7acdad59d.tar.gz wix-8d6c4bf85755112eea638b1618b985d7acdad59d.tar.bz2 wix-8d6c4bf85755112eea638b1618b985d7acdad59d.zip |
Enable enabling runtime tests
Diffstat (limited to '')
-rw-r--r-- | src/test/test.cmd | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test.cmd b/src/test/test.cmd index 169b229c..44965457 100644 --- a/src/test/test.cmd +++ b/src/test/test.cmd | |||
@@ -4,11 +4,13 @@ | |||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if /i "%1"=="test" set RuntimeTestsEnabled=true | ||
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
8 | 9 | ||
9 | @echo Build integration tests %_C% | 10 | @if "%RuntimeTestsEnabled%"=="" echo Build integration tests %_C% |
11 | @if not "%RuntimeTestsEnabled%"=="" set _T=test&echo Run integration tests %_C% | ||
10 | 12 | ||
11 | @call burn\test_burn.cmd %_C% | 13 | @call burn\test_burn.cmd %_C% %_T% |
12 | 14 | ||
13 | @popd | 15 | @popd |
14 | @endlocal | 16 | @endlocal |