diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-01-19 15:38:47 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-19 15:56:43 -0600 |
commit | 453107d72fa96e7b942ef4698ab10e4bcac91d2e (patch) | |
tree | 3f3f0ba134746a83493607f1567510da1c87ad38 /src/test | |
parent | c941c5365e59127274f53b329da53c052aad0215 (diff) | |
download | wix-453107d72fa96e7b942ef4698ab10e4bcac91d2e.tar.gz wix-453107d72fa96e7b942ef4698ab10e4bcac91d2e.tar.bz2 wix-453107d72fa96e7b942ef4698ab10e4bcac91d2e.zip |
Use new logic for -sw in DecompileCommand.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs | 3 | ||||
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs b/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs index 3ee88640..f9cd2c70 100644 --- a/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs | |||
@@ -216,9 +216,10 @@ namespace WixToolsetTest.CoreIntegration | |||
216 | result.AssertSuccess(); | 216 | result.AssertSuccess(); |
217 | Assert.True(File.Exists(msiPath)); | 217 | Assert.True(File.Exists(msiPath)); |
218 | 218 | ||
219 | result = WixRunner.Execute(false, new[] | 219 | result = WixRunner.Execute(new[] |
220 | { | 220 | { |
221 | "decompile", msiPath, | 221 | "decompile", msiPath, |
222 | "-sw1060", | ||
222 | "-intermediateFolder", intermediateFolder, | 223 | "-intermediateFolder", intermediateFolder, |
223 | "-o", decompiledWxsPath | 224 | "-o", decompiledWxsPath |
224 | }); | 225 | }); |
diff --git a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs index 924337ba..b07f5bda 100644 --- a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | |||
@@ -20,7 +20,7 @@ namespace WixToolsetTest.CoreIntegration | |||
20 | var intermediateFolder = fs.GetFolder(); | 20 | var intermediateFolder = fs.GetFolder(); |
21 | var outputPath = Path.Combine(intermediateFolder, @"Actual.wxs"); | 21 | var outputPath = Path.Combine(intermediateFolder, @"Actual.wxs"); |
22 | 22 | ||
23 | var result = WixRunner.Execute(false, new[] | 23 | var result = WixRunner.Execute(new[] |
24 | { | 24 | { |
25 | "decompile", | 25 | "decompile", |
26 | Path.Combine(folder, msiName), | 26 | Path.Combine(folder, msiName), |