diff options
author | Rob Mensching <rob@firegiant.com> | 2022-01-02 22:57:41 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-01-02 23:48:48 -0800 |
commit | bceff47b867e2bd4086da2013fa2a0b9364b27b2 (patch) | |
tree | 5edaf56fdbe6e3a4b39475f350edbd50a5f24c01 | |
parent | 2cd713ec0f2bf68a77a9b2491429ce696ebcf608 (diff) | |
download | wix-bceff47b867e2bd4086da2013fa2a0b9364b27b2.tar.gz wix-bceff47b867e2bd4086da2013fa2a0b9364b27b2.tar.bz2 wix-bceff47b867e2bd4086da2013fa2a0b9364b27b2.zip |
Remove test package that is supposed to be missing
When missing uncompressed payloads in bundles were fixed in the
build, the FailureTests.CanInstallWhenMissingNonVitalPackage test
failed because a package used to be missing was now present. Now
we explicitly delete the package during the test bundle's build to
ensure it is missing.
-rw-r--r-- | src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj b/src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj index 37784e81..cdabf5ca 100644 --- a/src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj +++ b/src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj | |||
@@ -16,4 +16,7 @@ | |||
16 | <PackageReference Include="WixToolset.Bal.wixext" /> | 16 | <PackageReference Include="WixToolset.Bal.wixext" /> |
17 | <PackageReference Include="WixToolset.NetFx.wixext" /> | 17 | <PackageReference Include="WixToolset.NetFx.wixext" /> |
18 | </ItemGroup> | 18 | </ItemGroup> |
19 | <Target Name="RemovePackageThatShouldBeMissing" AfterTargets="AfterBuild"> | ||
20 | <Delete Files="$(OutputPath)MissingNonVital.msi" /> | ||
21 | </Target> | ||
19 | </Project> \ No newline at end of file | 22 | </Project> \ No newline at end of file |