aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-07-01 19:35:48 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-07-01 19:38:57 +1000
commit83be85cdfca822028df65558bb3ac7f22d4de228 (patch)
treebe2811994c56d6e610222597517ca04493fc475d /src/test/WixToolsetTest.CoreIntegration/TestData
parent4c2abc241ea8c7816a3eac83a44d186f2b504f73 (diff)
downloadwix-83be85cdfca822028df65558bb3ac7f22d4de228.tar.gz
wix-83be85cdfca822028df65558bb3ac7f22d4de228.tar.bz2
wix-83be85cdfca822028df65558bb3ac7f22d4de228.zip
Add failing test for CustomAction cycle.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs
new file mode 100644
index 00000000..56c07eb9
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs
@@ -0,0 +1,19 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup" />
6 </ComponentGroup>
7
8 <Binary Id="Binary1" SourceFile="test.txt" />
9 <CustomAction Id="Action1" BinaryKey="Binary1" DllEntry="EntryPoint1" />
10 <CustomAction Id="Action2" BinaryKey="Binary1" DllEntry="EntryPoint2" />
11 <CustomAction Id="Action3" BinaryKey="Binary1" DllEntry="EntryPoint3" />
12
13 <InstallExecuteSequence>
14 <Custom Action="Action1" After="Action2" />
15 <Custom Action="Action2" After="Action3" />
16 <Custom Action="Action3" After="Action1" />
17 </InstallExecuteSequence>
18 </Fragment>
19</Wix>