aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2023-05-01 21:09:14 -0400
committerRob Mensching <rob@firegiant.com>2023-06-03 01:24:39 -0700
commit5520259549e1ca3380c8e03d5660e399ed12c48e (patch)
tree0b6058493f5e4666a678489d790e0b308a95fb88 /src/test
parent1d7ca4c4d7edfb16be7ca24ca680c9b630d56e7c (diff)
downloadwix-5520259549e1ca3380c8e03d5660e399ed12c48e.tar.gz
wix-5520259549e1ca3380c8e03d5660e399ed12c48e.tar.bz2
wix-5520259549e1ca3380c8e03d5660e399ed12c48e.zip
Tame some wild pointers.
Maybe Rust wouldn't be so bad... Fixes https://github.com/wixtoolset/issues/issues/7451.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/burn/TestData/DependencyTests/BundleF/BundleF.wxs13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/test/burn/TestData/DependencyTests/BundleF/BundleF.wxs b/src/test/burn/TestData/DependencyTests/BundleF/BundleF.wxs
index 4fb1fd43..cfeda6c4 100644
--- a/src/test/burn/TestData/DependencyTests/BundleF/BundleF.wxs
+++ b/src/test/burn/TestData/DependencyTests/BundleF/BundleF.wxs
@@ -3,7 +3,18 @@
3<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:fortestinguseonly="http://wixtoolset.org/schemas/v4/wxs/fortestinguseonly"> 3<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:fortestinguseonly="http://wixtoolset.org/schemas/v4/wxs/fortestinguseonly">
4 <Fragment> 4 <Fragment>
5 <fortestinguseonly:ForTestingUseOnlyBundle Id="{5E9D5B04-41EA-4196-954C-1F7357C31FB0}" /> 5 <fortestinguseonly:ForTestingUseOnlyBundle Id="{5E9D5B04-41EA-4196-954C-1F7357C31FB0}" />
6 <RelatedBundle Id="583B5ECB-04E6-4837-A30C-A1ADCBE24235" Action="detect" /> 6 <RelatedBundle Id="{AAAAAAAA-0000-0000-0000-000000000000}" Action="addon" />
7 <RelatedBundle Id="{BBBBBBBB-0000-0000-0000-000000000000}" Action="patch" />
8 <RelatedBundle Id="{CCCCCCCC-0000-0000-0000-000000000000}" Action="upgrade" />
9 <RelatedBundle Id="{DDDDDDDD-0000-0000-0000-000000000000}" Action="detect" />
10 <RelatedBundle Id="{AAAAAAAA-1111-0000-0000-000000000000}" Action="addon" />
11 <RelatedBundle Id="{BBBBBBBB-1111-0000-0000-000000000000}" Action="patch" />
12 <RelatedBundle Id="{CCCCCCCC-1111-0000-0000-000000000000}" Action="upgrade" />
13 <RelatedBundle Id="{DDDDDDDD-1111-0000-0000-000000000000}" Action="detect" />
14 <RelatedBundle Id="{AAAAAAAA-2222-0000-0000-000000000000}" Action="addon" />
15 <RelatedBundle Id="{BBBBBBBB-2222-0000-0000-000000000000}" Action="patch" />
16 <RelatedBundle Id="{CCCCCCCC-2222-0000-0000-000000000000}" Action="upgrade" />
17 <RelatedBundle Id="{DDDDDDDD-2222-0000-0000-000000000000}" Action="detect" />
7 18
8 <PackageGroup Id="BundlePackages"> 19 <PackageGroup Id="BundlePackages">
9 <MsiPackage Id="PackageA" SourceFile="$(var.PackageAv1.TargetPath)" /> 20 <MsiPackage Id="PackageA" SourceFile="$(var.PackageAv1.TargetPath)" />