aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-10 08:11:09 -0700
committerRob Mensching <rob@firegiant.com>2020-06-10 08:16:55 -0700
commit74e57bee9f6d9029cbbb2977c18f02d8ec18c50c (patch)
treef8cb65b4868e4a366d19053d173aa181512e9a4e /src/test
parent5edb291f102959e993123ee402d364df450206cf (diff)
downloadwix-74e57bee9f6d9029cbbb2977c18f02d8ec18c50c.tar.gz
wix-74e57bee9f6d9029cbbb2977c18f02d8ec18c50c.tar.bz2
wix-74e57bee9f6d9029cbbb2977c18f02d8ec18c50c.zip
Update MSBuild task to support async commands and push heat out of proc
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs
index f5f03be0..3b4457be 100644
--- a/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs
+++ b/src/test/WixToolsetTest.MSBuild/MsbuildHeatFixture.cs
@@ -33,7 +33,7 @@ namespace WixToolsetTest.MSBuild
33 var result = MsbuildUtilities.BuildProject(buildSystem, projectPath); 33 var result = MsbuildUtilities.BuildProject(buildSystem, projectPath);
34 result.AssertSuccess(); 34 result.AssertSuccess();
35 35
36 var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem); 36 var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem, true);
37 Assert.Single(heatCommandLines); 37 Assert.Single(heatCommandLines);
38 38
39 var warnings = result.Output.Where(line => line.Contains(": warning")); 39 var warnings = result.Output.Where(line => line.Contains(": warning"));
@@ -89,7 +89,7 @@ namespace WixToolsetTest.MSBuild
89 var result = MsbuildUtilities.BuildProject(buildSystem, projectPath); 89 var result = MsbuildUtilities.BuildProject(buildSystem, projectPath);
90 result.AssertSuccess(); 90 result.AssertSuccess();
91 91
92 var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem); 92 var heatCommandLines = MsbuildUtilities.GetToolCommandLines(result, "heat", "file", buildSystem, true);
93 Assert.Equal(2, heatCommandLines.Count()); 93 Assert.Equal(2, heatCommandLines.Count());
94 94
95 var warnings = result.Output.Where(line => line.Contains(": warning")); 95 var warnings = result.Output.Where(line => line.Contains(": warning"));