aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-07-21 14:31:53 -0700
committerRob Mensching <rob@firegiant.com>2020-07-21 14:41:12 -0700
commitb62a7a0beb7ceb7987de28ec768c7814cadb83b9 (patch)
tree69a9183a3182334f0d48a39ab8e411ee3fc3aecd /src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
parent414c07f7adce9c9fd0132ab0fade0267f743f665 (diff)
downloadwix-b62a7a0beb7ceb7987de28ec768c7814cadb83b9.tar.gz
wix-b62a7a0beb7ceb7987de28ec768c7814cadb83b9.tar.bz2
wix-b62a7a0beb7ceb7987de28ec768c7814cadb83b9.zip
Support implicit standard directory reference and "3264" platform folders
Completes wixtoolset/issues#5798 and wixtoolset/issues#5835
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
index 3ab218d1..4ff7f5f6 100644
--- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
@@ -365,14 +365,15 @@ namespace WixToolsetTest.CoreIntegration
365 365
366 Assert.True(File.Exists(msiPath)); 366 Assert.True(File.Exists(msiPath));
367 var results = Query.QueryDatabase(msiPath, new[] { "Directory" }); 367 var results = Query.QueryDatabase(msiPath, new[] { "Directory" });
368 Assert.Equal(new[] 368 WixAssert.CompareLineByLine(new[]
369 { 369 {
370 "Directory:DUPLICATENAMEANDSHORTNAME\tINSTALLFOLDER\tduplicat", 370 "Directory:DUPLICATENAMEANDSHORTNAME\tINSTALLFOLDER\tduplicat",
371 "Directory:INSTALLFOLDER\tProgramFilesFolder\toekcr5lq|MsiPackage", 371 "Directory:INSTALLFOLDER\tProgramFiles6432Folder\t1egc1laj|MsiPackage",
372 "Directory:NAMEANDSHORTNAME\tINSTALLFOLDER\tSHORTNAM|NameAndShortName", 372 "Directory:NAMEANDSHORTNAME\tINSTALLFOLDER\tSHORTNAM|NameAndShortName",
373 "Directory:NAMEANDSHORTSOURCENAME\tINSTALLFOLDER\tNAMEASSN|NameAndShortSourceName", 373 "Directory:NAMEANDSHORTSOURCENAME\tINSTALLFOLDER\tNAMEASSN|NameAndShortSourceName",
374 "Directory:NAMEWITHSHORTVALUE\tINSTALLFOLDER\tSHORTVAL", 374 "Directory:NAMEWITHSHORTVALUE\tINSTALLFOLDER\tSHORTVAL",
375 "Directory:ProgramFilesFolder\tTARGETDIR\t.", 375 "Directory:ProgramFiles6432Folder\tProgramFilesFolder\t.",
376 "Directory:ProgramFilesFolder\tTARGETDIR\tPFiles",
376 "Directory:SHORTNAMEANDLONGSOURCENAME\tINSTALLFOLDER\tSHNALSNM:6ukthv5q|ShortNameAndLongSourceName", 377 "Directory:SHORTNAMEANDLONGSOURCENAME\tINSTALLFOLDER\tSHNALSNM:6ukthv5q|ShortNameAndLongSourceName",
377 "Directory:SHORTNAMEONLY\tINSTALLFOLDER\tSHORTONL", 378 "Directory:SHORTNAMEONLY\tINSTALLFOLDER\tSHORTONL",
378 "Directory:SOURCENAME\tINSTALLFOLDER\ts2s5bq-i|NameAndSourceName:dhnqygng|SourceNameWithName", 379 "Directory:SOURCENAME\tINSTALLFOLDER\ts2s5bq-i|NameAndSourceName:dhnqygng|SourceNameWithName",