aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-19 14:41:19 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-19 21:32:39 -0600
commit85deb61f666f6817c1a137ace4d666c8ae2940fb (patch)
treeb341f45a3a9d1a58d7cd2bf37f1565d7d34ce970 /src/test/WixToolsetTest.CoreIntegration/TestData/BadInput
parent149867e176f22fe0af1a57355a7ace820710a791 (diff)
downloadwix-85deb61f666f6817c1a137ace4d666c8ae2940fb.tar.gz
wix-85deb61f666f6817c1a137ace4d666c8ae2940fb.tar.bz2
wix-85deb61f666f6817c1a137ace4d666c8ae2940fb.zip
4862 - Disallow Burn Variables that are Hidden and Persisted.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/BadInput')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/BundleVariable.wxs3
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/HiddenPersistedBundleVariable.wxs6
2 files changed, 7 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/BundleVariable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/BundleVariable.wxs
index 293b379f..a2d49b18 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/BundleVariable.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/BundleVariable.wxs
@@ -1,6 +1,5 @@
1<?xml version="1.0" encoding="utf-8" ?> 1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" 2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 xmlns:ex="http://www.example.com/scheams/v1/wxs">
4 <Fragment> 3 <Fragment>
5 <Variable Name="BadType" Type="doesnotexist" Value="dne" /> 4 <Variable Name="BadType" Type="doesnotexist" Value="dne" />
6 </Fragment> 5 </Fragment>
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/HiddenPersistedBundleVariable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/HiddenPersistedBundleVariable.wxs
new file mode 100644
index 00000000..5ebe5472
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/HiddenPersistedBundleVariable.wxs
@@ -0,0 +1,6 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <Variable Name="BadType" Hidden="yes" Persisted="yes" Value="dne" />
5 </Fragment>
6</Wix>