diff options
Diffstat (limited to 'src/test/WixToolsetTest.Bal/BalExtensionFixture.cs')
-rw-r--r-- | src/test/WixToolsetTest.Bal/BalExtensionFixture.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs b/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs index c5a25948..06727afd 100644 --- a/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs +++ b/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs | |||
@@ -9,7 +9,7 @@ namespace WixToolsetTest.Bal | |||
9 | 9 | ||
10 | public class BalExtensionFixture | 10 | public class BalExtensionFixture |
11 | { | 11 | { |
12 | [Fact(Skip = "Test demonstrates failure")] | 12 | [Fact] |
13 | public void CanBuildUsingWixStdBa() | 13 | public void CanBuildUsingWixStdBa() |
14 | { | 14 | { |
15 | using (var fs = new DisposableFileSystem()) | 15 | using (var fs = new DisposableFileSystem()) |
@@ -17,12 +17,14 @@ namespace WixToolsetTest.Bal | |||
17 | var baseFolder = fs.GetFolder(); | 17 | var baseFolder = fs.GetFolder(); |
18 | var bundleFile = Path.Combine(baseFolder, "bin", "test.exe"); | 18 | var bundleFile = Path.Combine(baseFolder, "bin", "test.exe"); |
19 | var bundleSourceFolder = TestData.Get(@"TestData\WixStdBa"); | 19 | var bundleSourceFolder = TestData.Get(@"TestData\WixStdBa"); |
20 | var intermediateFolder = Path.Combine(baseFolder, "obj"); | ||
20 | 21 | ||
21 | var compileResult = WixRunner.Execute(new[] | 22 | var compileResult = WixRunner.Execute(new[] |
22 | { | 23 | { |
23 | "build", | 24 | "build", |
24 | Path.Combine(bundleSourceFolder, "Bundle.wxs"), | 25 | Path.Combine(bundleSourceFolder, "Bundle.wxs"), |
25 | "-ext", TestData.Get(@"WixToolset.Bal.wixext.dll"), | 26 | "-ext", TestData.Get(@"WixToolset.Bal.wixext.dll"), |
27 | "-intermediateFolder", intermediateFolder, | ||
26 | "-burnStub", TestData.Get(@"runtimes\win-x86\native\burn.x86.exe"), | 28 | "-burnStub", TestData.Get(@"runtimes\win-x86\native\burn.x86.exe"), |
27 | "-o", bundleFile, | 29 | "-o", bundleFile, |
28 | }); | 30 | }); |