aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-09-27 16:21:40 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-09-30 13:14:35 +1000
commit6fc21f5c28fec195f8f6eccfed27109a4098d97f (patch)
tree578634161c6be71f389082998d977f906d27bee4 /src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir
parenta6be2d64ff43f0ddd81f448dd889b4458bd734b0 (diff)
downloadwix-6fc21f5c28fec195f8f6eccfed27109a4098d97f.tar.gz
wix-6fc21f5c28fec195f8f6eccfed27109a4098d97f.tar.bz2
wix-6fc21f5c28fec195f8f6eccfed27109a4098d97f.zip
Add failing test for DefaultDir.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir/DefaultDir.wxs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir/DefaultDir.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir/DefaultDir.wxs
new file mode 100644
index 00000000..aeb3d554
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/DefaultDir/DefaultDir.wxs
@@ -0,0 +1,21 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
5 <Component>
6 <File Source="test.txt" />
7 </Component>
8 </ComponentGroup>
9
10 <DirectoryRef Id="INSTALLFOLDER">
11 <Directory Id="NAMEWITHSHORTVALUE" Name="SHORTVAL"></Directory>
12 <Directory Id="NAMEANDSHORTNAME" Name="NameAndShortName" ShortName="SHORTNAM"></Directory>
13 <Directory Id="SHORTNAMEONLY" Name="SHORTONL"></Directory>
14 <Directory Id="SOURCENAME" Name="NameAndSourceName" SourceName="SourceNameWithName"></Directory>
15 <Directory Id="SOURCENAMESONLY" SourceName="SourceNameOnly" ShortSourceName="SRCNAMON"></Directory>
16 <Directory Id="NAMEANDSHORTSOURCENAME" Name="NameAndShortSourceName" ShortName="NAMEASSN"></Directory>
17 <Directory Id="SHORTNAMEANDLONGSOURCENAME" SourceName="ShortNameAndLongSourceName" Name="SHNALSNM"></Directory>
18 <Directory Id="SOURCENAMEWITHSHORTVALUE" SourceName="SRTSRCVL"></Directory>
19 </DirectoryRef>
20 </Fragment>
21</Wix>