diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/BundleFixture.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/BundleFixture.cs b/src/test/WixToolsetTest.CoreIntegration/BundleFixture.cs index 30cbb18e..094e4df2 100644 --- a/src/test/WixToolsetTest.CoreIntegration/BundleFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/BundleFixture.cs | |||
@@ -146,7 +146,7 @@ namespace WixToolsetTest.CoreIntegration | |||
146 | var baFolderPath = Path.Combine(baseFolder, "ba"); | 146 | var baFolderPath = Path.Combine(baseFolder, "ba"); |
147 | var extractFolderPath = Path.Combine(baseFolder, "extract"); | 147 | var extractFolderPath = Path.Combine(baseFolder, "extract"); |
148 | 148 | ||
149 | var result = WixRunner.Execute(new[] | 149 | var result = WixRunner.Execute(false, new[] // TODO: go back to elevating warnings as errors. |
150 | { | 150 | { |
151 | "build", | 151 | "build", |
152 | "-arch", "x64", | 152 | "-arch", "x64", |
@@ -158,7 +158,8 @@ namespace WixToolsetTest.CoreIntegration | |||
158 | }); | 158 | }); |
159 | 159 | ||
160 | result.AssertSuccess(); | 160 | result.AssertSuccess(); |
161 | Assert.Empty(result.Messages.Where(m => m.Level == MessageLevel.Warning)); | 161 | var warning = Assert.Single(result.Messages.Where(m => m.Level == MessageLevel.Warning)); |
162 | Assert.Equal((int)WarningMessages.Ids.ExperimentalBundlePlatform, warning.Id); | ||
162 | 163 | ||
163 | Assert.True(File.Exists(exePath)); | 164 | Assert.True(File.Exists(exePath)); |
164 | Assert.True(File.Exists(pdbPath)); | 165 | Assert.True(File.Exists(pdbPath)); |