aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-05 19:15:44 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-05 21:38:25 +1000
commitfcd88ec3995033bf802f0a637e7fce65e8739006 (patch)
treeb16be33e76eab83377102bb11edd56f0ee368ff1 /src/test/WixToolsetTest.CoreIntegration/TestData
parent05acd26c0dbb86bccb1075e55a77f94da1d22b4f (diff)
downloadwix-fcd88ec3995033bf802f0a637e7fce65e8739006.tar.gz
wix-fcd88ec3995033bf802f0a637e7fce65e8739006.tar.bz2
wix-fcd88ec3995033bf802f0a637e7fce65e8739006.zip
Add test around ActionText and fix the table definition to get it passing.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
index 780529d6..2846d16e 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
@@ -2,10 +2,10 @@
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment> 3 <Fragment>
4 <ComponentGroup Id="ProductComponents"> 4 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup"></ComponentGroupRef> 5 <ComponentGroupRef Id="MinimalComponentGroup" />
6 </ComponentGroup> 6 </ComponentGroup>
7 7
8 <Binary Id="Binary1" SourceFile="test.txt"></Binary> 8 <Binary Id="Binary1" SourceFile="test.txt" />
9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" /> 9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" />
10 <CustomAction Id="DiscardOptimismAllBeingsWhoProceed" Error="Abandon hope all ye who enter here." /> 10 <CustomAction Id="DiscardOptimismAllBeingsWhoProceed" Error="Abandon hope all ye who enter here." />
11 <CustomAction Id="CustomActionWithHiddenTarget" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" Execute="deferred" HideTarget="yes" /> 11 <CustomAction Id="CustomActionWithHiddenTarget" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" Execute="deferred" HideTarget="yes" />
@@ -25,5 +25,9 @@
25 <InstallUISequence> 25 <InstallUISequence>
26 <Custom Action="CustomAction2" After="CostInitialize" /> 26 <Custom Action="CustomAction2" After="CostInitialize" />
27 </InstallUISequence> 27 </InstallUISequence>
28
29 <UI>
30 <ProgressText Action="CustomAction2">Progess2Text</ProgressText>
31 </UI>
28 </Fragment> 32 </Fragment>
29</Wix> 33</Wix>