aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-01-02 19:00:16 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-03 15:49:32 -0600
commitb673734cce44dd28c1d4d1810da3069324466166 (patch)
treeada7f6d994a1dbcf09e8b30b95f7b2c403a0a7f6 /src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs
parent643a5c5db1da6fb68fdc353bbbdbecaa1964425e (diff)
downloadwix-b673734cce44dd28c1d4d1810da3069324466166.tar.gz
wix-b673734cce44dd28c1d4d1810da3069324466166.tar.bz2
wix-b673734cce44dd28c1d4d1810da3069324466166.zip
Implement command line for SuppressAllWarnings and WarningsAsError.
Make WixRunner.Execute default to setting WarningsAsError to make sure tests are not accidentally causing warnings.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs b/src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs
index e18990d3..a6504cb9 100644
--- a/src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/PreprocessorFixture.cs
@@ -49,7 +49,7 @@ namespace WixToolsetTest.CoreIntegration
49 var baseFolder = fs.GetFolder(); 49 var baseFolder = fs.GetFolder();
50 var intermediateFolder = Path.Combine(baseFolder, "obj"); 50 var intermediateFolder = Path.Combine(baseFolder, "obj");
51 51
52 var result = WixRunner.Execute(new[] 52 var result = WixRunner.Execute(warningsAsErrors: false, new[]
53 { 53 {
54 "build", 54 "build",
55 Path.Combine(folder, "Package.wxs"), 55 Path.Combine(folder, "Package.wxs"),