aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-10-14 23:05:10 -0500
committerSean Hall <r.sean.hall@gmail.com>2020-10-14 23:09:16 -0500
commit95188080c8005c01c39bb071459b36f8660bcfcd (patch)
tree125463957e98905fe0e6831815b261d9b84f0adc /src/test/WixToolsetTest.CoreIntegration/TestData
parent313feeabd8c22a38bc1c5247f2e1bded20359ad7 (diff)
downloadwix-95188080c8005c01c39bb071459b36f8660bcfcd.tar.gz
wix-95188080c8005c01c39bb071459b36f8660bcfcd.tar.bz2
wix-95188080c8005c01c39bb071459b36f8660bcfcd.zip
Add failing tests.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicateCacheIds.wxs9
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicatePayloadNames.wxs9
2 files changed, 18 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicateCacheIds.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicateCacheIds.wxs
new file mode 100644
index 00000000..5c58ef50
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicateCacheIds.wxs
@@ -0,0 +1,9 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <PackageGroup Id="BundlePackages">
5 <ExePackage Id="Manual1" SourceFile="burn.exe" Name="manual1\burn.exe" CacheId="Manual" />
6 <ExePackage Id="Manual2" SourceFile="burn.exe" Name="manual2\burn.exe" CacheId="Manual" />
7 </PackageGroup>
8 </Fragment>
9</Wix>
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicatePayloadNames.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicatePayloadNames.wxs
new file mode 100644
index 00000000..2d4e8a3c
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/DuplicatePayloadNames.wxs
@@ -0,0 +1,9 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <PackageGroup Id="BundlePackages">
5 <ExePackage Id="Auto1" SourceFile="burn.exe" CacheId="Auto1" />
6 <ExePackage Id="Auto2" SourceFile="burn.exe" CacheId="Auto2" />
7 </PackageGroup>
8 </Fragment>
9</Wix>