diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-02-11 15:22:03 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-11 15:25:22 -0800 |
| commit | bfba90f1714724ab661e43af5cc48bc148bdef70 (patch) | |
| tree | a5ef8e1d156a935f00ee7f31c23a2259511f759b /src/test/WixToolsetTest.Util/UtilExtensionFixture.cs | |
| parent | b4a31404325d3fdd95d67fd41eda8e48e3491629 (diff) | |
| download | wix-bfba90f1714724ab661e43af5cc48bc148bdef70.tar.gz wix-bfba90f1714724ab661e43af5cc48bc148bdef70.tar.bz2 wix-bfba90f1714724ab661e43af5cc48bc148bdef70.zip | |
Replace Win64 attribute with Bitness attribute
Diffstat (limited to 'src/test/WixToolsetTest.Util/UtilExtensionFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.Util/UtilExtensionFixture.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs b/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs index d9440614..e1a608d3 100644 --- a/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs +++ b/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs | |||
| @@ -243,7 +243,7 @@ namespace WixToolsetTest.Util | |||
| 243 | "</BundleExtension>", bundleExtensionDatas[0].GetTestXml()); | 243 | "</BundleExtension>", bundleExtensionDatas[0].GetTestXml()); |
| 244 | 244 | ||
| 245 | var utilSearches = extractResult.SelectManifestNodes("/burn:BurnManifest/*[self::burn:ExtensionSearch or self::burn:FileSearch or self::burn:MsiProductSearch or self::burn:RegistrySearch]"); | 245 | var utilSearches = extractResult.SelectManifestNodes("/burn:BurnManifest/*[self::burn:ExtensionSearch or self::burn:FileSearch or self::burn:MsiProductSearch or self::burn:RegistrySearch]"); |
| 246 | Assert.Equal(4, utilSearches.Count); | 246 | Assert.Equal(5, utilSearches.Count); |
| 247 | Assert.Equal("<ExtensionSearch Id='DetectSHA2SupportId' Variable='IsSHA2Supported' " + | 247 | Assert.Equal("<ExtensionSearch Id='DetectSHA2SupportId' Variable='IsSHA2Supported' " + |
| 248 | "ExtensionId='Wix4UtilBundleExtension_X86' />", utilSearches[0].GetTestXml()); | 248 | "ExtensionId='Wix4UtilBundleExtension_X86' />", utilSearches[0].GetTestXml()); |
| 249 | Assert.Equal("<FileSearch Id='FileSearchId' Variable='FileSearchVariable' " + | 249 | Assert.Equal("<FileSearch Id='FileSearchId' Variable='FileSearchVariable' " + |
| @@ -252,6 +252,8 @@ namespace WixToolsetTest.Util | |||
| 252 | "UpgradeCode='{738D02BF-E231-4370-8209-E9FD4E1BE2A1}' Type='version' />", utilSearches[2].GetTestXml()); | 252 | "UpgradeCode='{738D02BF-E231-4370-8209-E9FD4E1BE2A1}' Type='version' />", utilSearches[2].GetTestXml()); |
| 253 | Assert.Equal("<RegistrySearch Id='RegistrySearchId' Variable='RegistrySearchVariable' " + | 253 | Assert.Equal("<RegistrySearch Id='RegistrySearchId' Variable='RegistrySearchVariable' " + |
| 254 | @"Root='HKLM' Key='SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' Value='Release' Type='value' VariableType='string' />", utilSearches[3].GetTestXml()); | 254 | @"Root='HKLM' Key='SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' Value='Release' Type='value' VariableType='string' />", utilSearches[3].GetTestXml()); |
| 255 | Assert.Equal("<RegistrySearch Id='RegistrySearchId64' Variable='RegistrySearchVariable64' " + | ||
| 256 | @"Root='HKLM' Key='SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' Value='Release' Type='value' Win64='yes' VariableType='string' />", utilSearches[4].GetTestXml()); | ||
| 255 | } | 257 | } |
| 256 | } | 258 | } |
| 257 | 259 | ||
