aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixTestTools/BundleInstaller.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/WixTestTools/BundleInstaller.cs')
-rw-r--r--src/test/burn/WixTestTools/BundleInstaller.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/burn/WixTestTools/BundleInstaller.cs b/src/test/burn/WixTestTools/BundleInstaller.cs
index 0f2cfa8f..93602661 100644
--- a/src/test/burn/WixTestTools/BundleInstaller.cs
+++ b/src/test/burn/WixTestTools/BundleInstaller.cs
@@ -189,7 +189,8 @@ namespace WixTestTools
189 /// <returns>Path to the generated log file.</returns> 189 /// <returns>Path to the generated log file.</returns>
190 private string RunBundleWithArguments(int expectedExitCode, MSIExec.MSIExecMode mode, string[] arguments, bool assertOnError = true, string bundlePath = null, string layoutDirectory = null) 190 private string RunBundleWithArguments(int expectedExitCode, MSIExec.MSIExecMode mode, string[] arguments, bool assertOnError = true, string bundlePath = null, string layoutDirectory = null)
191 { 191 {
192 TestTool bundle = new TestTool(bundlePath ?? this.Bundle); 192 var exePath = bundlePath ?? this.Bundle;
193 var bundle = new TestTool(exePath);
193 var sb = new StringBuilder(); 194 var sb = new StringBuilder();
194 195
195 // Be sure to run silent. 196 // Be sure to run silent.
@@ -230,6 +231,8 @@ namespace WixTestTools
230 // Set the arguments. 231 // Set the arguments.
231 bundle.Arguments = sb.ToString(); 232 bundle.Arguments = sb.ToString();
232 233
234 this.TestContext.TestOutputHelper.WriteLine($"Launching '{exePath}' with arguments '{bundle.Arguments}'...");
235
233 // Run the tool and assert the expected code. 236 // Run the tool and assert the expected code.
234 bundle.ExpectedExitCode = expectedExitCode; 237 bundle.ExpectedExitCode = expectedExitCode;
235 bundle.AlternateExitCode = this.AlternateExitCode; 238 bundle.AlternateExitCode = this.AlternateExitCode;