aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-03-20 12:48:26 -0400
committerBob Arnson <bob@firegiant.com>2019-03-20 12:53:00 -0400
commit191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd (patch)
treea756a0ad6e5232a89e5416bc461541fe07235f8c /src/test
parent615bc202834ac45a9a107e5fccd900081a4abf74 (diff)
downloadwix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.tar.gz
wix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.tar.bz2
wix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.zip
Fix missing symbol for WixSuppressAction.
Exposes non-overridable standard actions so WixToolsetTest.CoreIntegration.LinkerFixture.CanBuildWithOverridableActions now fails.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs
index d8743747..db773d17 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs
@@ -7,6 +7,10 @@
7 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> 7 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
8 <MediaTemplate /> 8 <MediaTemplate />
9 9
10 <InstallExecuteSequence>
11 <ValidateProductID Suppress="yes" />
12 </InstallExecuteSequence>
13
10 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> 14 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
11 <ComponentGroupRef Id="ProductComponents" /> 15 <ComponentGroupRef Id="ProductComponents" />
12 <ComponentGroupRef Id="Foo1" /> 16 <ComponentGroupRef Id="Foo1" />