diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-07 13:21:29 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 21:44:46 -0700 |
commit | d3b12de2f22eb552e073f0c949833a7ef4d4f13c (patch) | |
tree | 87e6148d06a07ea57ba20f4fa2f245a4f5a5546c /src/test | |
parent | 860676fa5b40a1904478151e9b4934c004e7db63 (diff) | |
download | wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.gz wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.bz2 wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.zip |
Fix AppSearch related building
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index 826d8985..6ff4e237 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |||
@@ -9,7 +9,7 @@ namespace WixToolsetTest.CoreIntegration | |||
9 | 9 | ||
10 | public class MsiQueryFixture | 10 | public class MsiQueryFixture |
11 | { | 11 | { |
12 | [Fact(Skip = "Test demonstrates failure")] | 12 | [Fact] |
13 | public void PopulatesAppSearchTablesFromComponentSearch() | 13 | public void PopulatesAppSearchTablesFromComponentSearch() |
14 | { | 14 | { |
15 | var folder = TestData.Get(@"TestData"); | 15 | var folder = TestData.Get(@"TestData"); |
@@ -43,7 +43,7 @@ namespace WixToolsetTest.CoreIntegration | |||
43 | } | 43 | } |
44 | } | 44 | } |
45 | 45 | ||
46 | [Fact(Skip = "Test demonstrates failure")] | 46 | [Fact] |
47 | public void PopulatesAppSearchTablesFromDirectorySearch() | 47 | public void PopulatesAppSearchTablesFromDirectorySearch() |
48 | { | 48 | { |
49 | var folder = TestData.Get(@"TestData"); | 49 | var folder = TestData.Get(@"TestData"); |
@@ -71,13 +71,13 @@ namespace WixToolsetTest.CoreIntegration | |||
71 | var results = Query.QueryDatabase(msiPath, new[] { "AppSearch", "DrLocator" }); | 71 | var results = Query.QueryDatabase(msiPath, new[] { "AppSearch", "DrLocator" }); |
72 | Assert.Equal(new[] | 72 | Assert.Equal(new[] |
73 | { | 73 | { |
74 | "AppSearch:SAMPLECOMPFOUND\tSampleCompSearch", | 74 | "AppSearch:SAMPLEDIRFOUND\tSampleDirSearch", |
75 | "DrLocator:SampleDirSearch\t\tC:\\SampleDir\t", | 75 | "DrLocator:SampleDirSearch\t\tC:\\SampleDir\t", |
76 | }, results); | 76 | }, results); |
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | [Fact(Skip = "Test demonstrates failure")] | 80 | [Fact] |
81 | public void PopulatesAppSearchTablesFromFileSearch() | 81 | public void PopulatesAppSearchTablesFromFileSearch() |
82 | { | 82 | { |
83 | var folder = TestData.Get(@"TestData"); | 83 | var folder = TestData.Get(@"TestData"); |
@@ -112,7 +112,7 @@ namespace WixToolsetTest.CoreIntegration | |||
112 | } | 112 | } |
113 | } | 113 | } |
114 | 114 | ||
115 | [Fact(Skip = "Test demonstrates failure")] | 115 | [Fact] |
116 | public void PopulatesAppSearchTablesFromRegistrySearch() | 116 | public void PopulatesAppSearchTablesFromRegistrySearch() |
117 | { | 117 | { |
118 | var folder = TestData.Get(@"TestData"); | 118 | var folder = TestData.Get(@"TestData"); |