diff options
author | Bob Arnson <bob@firegiant.com> | 2020-04-11 19:35:05 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-04-11 19:38:13 -0400 |
commit | 85a5fecdef50f18af8c8a87d270b6d55a02165d2 (patch) | |
tree | 8db67580081840af02a5dd62e7233bd0c53c9824 /src/test | |
parent | 7c04bfdb54ccf5b4b67995c9715a3f7f9e454206 (diff) | |
download | wix-85a5fecdef50f18af8c8a87d270b6d55a02165d2.tar.gz wix-85a5fecdef50f18af8c8a87d270b6d55a02165d2.tar.bz2 wix-85a5fecdef50f18af8c8a87d270b6d55a02165d2.zip |
Remove partial WixPdb support.
Not as useful as intended and I'd rather remove it than potentially have to support something as weird as this.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs index 64b3fa93..44488a8a 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | |||
@@ -436,50 +436,6 @@ namespace WixToolsetTest.CoreIntegration | |||
436 | } | 436 | } |
437 | 437 | ||
438 | [Fact] | 438 | [Fact] |
439 | public void CanBuildWithPartialWixpdbInput() | ||
440 | { | ||
441 | var folder = TestData.Get(@"TestData\SingleFile"); | ||
442 | |||
443 | using (var fs = new DisposableFileSystem()) | ||
444 | { | ||
445 | var baseFolder = fs.GetFolder(); | ||
446 | var intermediateFolder = Path.Combine(baseFolder, "obj"); | ||
447 | var wixpdbPath = Path.Combine(baseFolder, @"partial\test.wixpdb"); | ||
448 | |||
449 | var result = WixRunner.Execute(new[] | ||
450 | { | ||
451 | "build", | ||
452 | Path.Combine(folder, "Package.wxs"), | ||
453 | Path.Combine(folder, "PackageComponents.wxs"), | ||
454 | "-loc", Path.Combine(folder, "Package.en-us.wxl"), | ||
455 | "-bindpath", Path.Combine(folder, "data"), | ||
456 | "-intermediateFolder", intermediateFolder, | ||
457 | //"-o", Path.Combine(baseFolder, @"partial\test.msi"), | ||
458 | "-pdb", wixpdbPath, | ||
459 | "-pdbtype", "Partial", | ||
460 | }, out var messages); | ||
461 | Assert.Equal(0, result); | ||
462 | |||
463 | result = WixRunner.Execute(new[] | ||
464 | { | ||
465 | "build", | ||
466 | wixpdbPath, | ||
467 | "-loc", Path.Combine(folder, "Package.en-us.wxl"), | ||
468 | "-bindpath", Path.Combine(folder, "data"), | ||
469 | "-intermediateFolder", intermediateFolder, | ||
470 | "-o", Path.Combine(baseFolder, @"bin\test.msi"), | ||
471 | }, out messages); | ||
472 | Assert.Equal(0, result); | ||
473 | |||
474 | var builtFiles = Directory.GetFiles(Path.Combine(baseFolder, @"bin")); | ||
475 | Assert.Equal(new[]{ | ||
476 | "test.msi", | ||
477 | "test.wixpdb", | ||
478 | }, builtFiles.Select(Path.GetFileName).ToArray()); | ||
479 | } | ||
480 | } | ||
481 | |||
482 | [Fact] | ||
483 | public void CanBuildWixlib() | 439 | public void CanBuildWixlib() |
484 | { | 440 | { |
485 | var folder = TestData.Get(@"TestData\SingleFile"); | 441 | var folder = TestData.Get(@"TestData\SingleFile"); |