diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-16 20:39:02 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-16 21:33:09 -0600 |
| commit | 7ce9de201708eb3b69b7dd8dee7c0b9ded15e905 (patch) | |
| tree | 902da575a81554aa6968b8dbbb2f7c400806ff3d /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | 155a2a61ee57eee7735d031c489c90255b39797b (diff) | |
| download | wix-7ce9de201708eb3b69b7dd8dee7c0b9ded15e905.tar.gz wix-7ce9de201708eb3b69b7dd8dee7c0b9ded15e905.tar.bz2 wix-7ce9de201708eb3b69b7dd8dee7c0b9ded15e905.zip | |
Canonicalize Payload/@Name.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
3 files changed, 23 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/AbsoluteName.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/AbsoluteName.wxs new file mode 100644 index 00000000..dc94d688 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/AbsoluteName.wxs | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Fragment> | ||
| 3 | <PayloadGroup Id="AbsoluteName"> | ||
| 4 | <Payload SourceFile="dir\file.ext" Name="\\server\share\target.file" /> | ||
| 5 | <Payload SourceFile="dir\file.ext" Name="C:\target.file" /> | ||
| 6 | <Payload SourceFile="dir\file.ext" Name="\dir\target.file" /> | ||
| 7 | </PayloadGroup> | ||
| 8 | </Fragment> | ||
| 9 | </Wix> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/CanonicalizeName.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/CanonicalizeName.wxs new file mode 100644 index 00000000..544b80ec --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/CanonicalizeName.wxs | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Fragment> | ||
| 3 | <PayloadGroup Id="CanonicalizeName"> | ||
| 4 | <Payload SourceFile="dir\file.ext" Name="a\..\c\.\d.exe" /> | ||
| 5 | </PayloadGroup> | ||
| 6 | </Fragment> | ||
| 7 | </Wix> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/ValidName.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/ValidName.wxs new file mode 100644 index 00000000..9c37a27d --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/ValidName.wxs | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Fragment> | ||
| 3 | <PayloadGroup Id="ValidName"> | ||
| 4 | <Payload SourceFile="dir\file.ext" Name="dir\file.ext" /> | ||
| 5 | </PayloadGroup> | ||
| 6 | </Fragment> | ||
| 7 | </Wix> | ||
