aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-09-30 10:26:16 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-09-30 13:14:35 +1000
commitd1ef3d5de29cdedce930f70e34b0e2b764f07269 (patch)
tree4aa39e9bf7bb51a15da7eae2013a815387280e2c /src/test/WixToolsetTest.CoreIntegration/TestData
parenta96ae75e256712829ac2174688c71e6a14ba1943 (diff)
downloadwix-d1ef3d5de29cdedce930f70e34b0e2b764f07269.tar.gz
wix-d1ef3d5de29cdedce930f70e34b0e2b764f07269.tar.bz2
wix-d1ef3d5de29cdedce930f70e34b0e2b764f07269.zip
Add failing test for LockPermissions when Permissions is 0.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/LockPermissions/EmptyPermissions.wxs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LockPermissions/EmptyPermissions.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/LockPermissions/EmptyPermissions.wxs
new file mode 100644
index 00000000..dfae2157
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/LockPermissions/EmptyPermissions.wxs
@@ -0,0 +1,13 @@
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"></ComponentGroupRef>
6 <Component Id="MiscComponent" Guid="D1414BA5-F8DE-4979-938D-C8D0F61A62C9" Directory="INSTALLFOLDER">
7 <CreateFolder>
8 <Permission User="Administrator"></Permission>
9 </CreateFolder>
10 </Component>
11 </ComponentGroup>
12 </Fragment>
13</Wix>