aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorRonald Martin <cpuwzd@comcast.net>2021-02-12 22:37:15 -0500
committerRob Mensching <rob@firegiant.com>2021-02-19 14:57:41 -0800
commit9dd02e0c1bb6463de5d79f14ce06d078ef876a32 (patch)
tree96a3f60f31990d9c0a6ffb5c4d8d2430b277f695 /src/test/WixToolsetTest.CoreIntegration/TestData
parent0ce3a9b66da80c505fd8901df88d31b0ad43dac6 (diff)
downloadwix-9dd02e0c1bb6463de5d79f14ce06d078ef876a32.tar.gz
wix-9dd02e0c1bb6463de5d79f14ce06d078ef876a32.tar.bz2
wix-9dd02e0c1bb6463de5d79f14ce06d078ef876a32.zip
Checkks all custom actions for cycles. Version 3. Fixes wixtoolset/issues#6201
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycleWithTail.wxs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycleWithTail.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycleWithTail.wxs
new file mode 100644
index 00000000..c64ef143
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycleWithTail.wxs
@@ -0,0 +1,20 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents">
4 <ComponentGroupRef Id="MinimalComponentGroup" />
5 </ComponentGroup>
6
7 <Binary Id="Binary1" SourceFile="test.txt" />
8 <CustomAction Id="Action1" DllEntry="EntryPoint1" BinaryRef="Binary1" />
9 <CustomAction Id="Action2" DllEntry="EntryPoint2" BinaryRef="Binary1" />
10 <CustomAction Id="Action3" DllEntry="EntryPoint3" BinaryRef="Binary1" />
11 <CustomAction Id="Action4" DllEntry="EntryPoint4" BinaryRef="Binary1" />
12
13 <InstallExecuteSequence>
14 <Custom Action="Action1" After="Action2" />
15 <Custom Action="Action2" After="Action3" />
16 <Custom Action="Action3" After="Action4" />
17 <Custom Action="Action4" After="Action2" />
18 </InstallExecuteSequence>
19 </Fragment>
20</Wix> \ No newline at end of file