diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-26 11:31:05 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 11:14:01 -0700 |
commit | df016066100df955d5ff98811e113fb2b1bd4b8a (patch) | |
tree | a27b35a3651ca7b1d8c4bb7c7483ec2f92583e08 /src/test/burn/test_burn.cmd | |
parent | dc6022da6cdbb9d7ca54c4a36485ceead07feaaf (diff) | |
download | wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.gz wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.bz2 wix-df016066100df955d5ff98811e113fb2b1bd4b8a.zip |
Implement integrated build process
Diffstat (limited to 'src/test/burn/test_burn.cmd')
-rw-r--r-- | src/test/burn/test_burn.cmd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/burn/test_burn.cmd b/src/test/burn/test_burn.cmd new file mode 100644 index 00000000..81df9f26 --- /dev/null +++ b/src/test/burn/test_burn.cmd | |||
@@ -0,0 +1,17 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | |||
4 | @set _C=Debug | ||
5 | :parse_args | ||
6 | @if /i "%1"=="release" set _C=Release& shift | ||
7 | @if not "%1"=="" shift & goto parse_args | ||
8 | |||
9 | @echo Burn integration tests %_C% | ||
10 | |||
11 | msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror || exit /b | ||
12 | msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj || exit /b | ||
13 | |||
14 | if /i "%RuntimeTestsEnabled%"=="true" dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E | ||
15 | |||
16 | @popd | ||
17 | @endlocal | ||