aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-11-14 12:13:44 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-11-14 12:18:44 +1000
commite34ea332def4718110e9a7efcf9e12bf7456c753 (patch)
treec335ac029f5af9541fd61e30dba98005ed465ff4 /src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch
parenta79a2bc97a428f635cccd58935c3bcd059743da4 (diff)
downloadwix-e34ea332def4718110e9a7efcf9e12bf7456c753.tar.gz
wix-e34ea332def4718110e9a7efcf9e12bf7456c753.tar.bz2
wix-e34ea332def4718110e9a7efcf9e12bf7456c753.zip
Add failing test for decompiling a directory search under a registry search.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs28
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/NestedDirSearchUnderRegSearch.msibin0 -> 36864 bytes
2 files changed, 28 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs
new file mode 100644
index 00000000..94ddfe19
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs
@@ -0,0 +1,28 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Product Id="{F71CC1C8-8EDC-4FCD-8946-D92AE30B3ABE}" Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0">
4 <Package Description="MsiPackage" InstallerVersion="500" Languages="1033" Manufacturer="Example Corporation" Platform="x86" />
5 <Directory Id="TARGETDIR" Name="SourceDir">
6 <Directory Id="ProgramFilesFolder">
7 <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb">
8 <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Win64="no">
9 <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="SourceDir\\MsiPackage\test.txt" />
10 </Component>
11 </Directory>
12 </Directory>
13 </Directory>
14 <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle">
15 <ComponentRef Id="test.txt" />
16 </Feature>
17 <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
18 <Media Id="1" />
19 <Property Id="ALLUSERS" Value="1" />
20 <Property Id="SAMPLEDIRFOUND">
21 <RegistrySearch Id="SubRegSearch" Root="HKLM" Key="SampleReg" Type="raw">
22 <DirectorySearch Id="SampleDirSearch" Path="SampleDir">
23 <DirectorySearch Id="SubDirSearch" Path="Subdir" />
24 </DirectorySearch>
25 </RegistrySearch>
26 </Property>
27 </Product>
28</Wix> \ No newline at end of file
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/NestedDirSearchUnderRegSearch.msi b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/NestedDirSearchUnderRegSearch.msi
new file mode 100644
index 00000000..7e0f8060
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/NestedDirSearchUnderRegSearch.msi
Binary files differ