@joebigelow / wix / commits / 17c717d3

Fix reserve cost

Rob Mensching committed Oct 7, 2019 at 15:48 UTC 17c717d302fd8c6ecc89e5611377bafcdd733f43
2 files changed +5 -1
src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+4
@@ -141,6 +141,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind
141 this.AddRemoveRegistryTuple((RemoveRegistryTuple)tuple, output);
142 break;
143
144 + case TupleDefinitionType.ReserveCost:
145 + this.AddTupleDefaultly(tuple, output, true);
146 + break;
147 +
148 case TupleDefinitionType.ServiceControl:
149 this.AddServiceControlTuple((ServiceControlTuple)tuple, output);
150 break;
src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
+1 -1
@@ -480,7 +480,7 @@ namespace WixToolsetTest.CoreIntegration
480 }
481 }
482
483 - [Fact(Skip = "Test demonstrates failure")]
483 + [Fact]
484 public void PopulatesReserveCostTable()
485 {
486 var folder = TestData.Get(@"TestData");