diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-03-18 20:15:33 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-03-19 12:07:32 -0500 |
commit | fb54576f1d05e82ba47cd718c4c4f8b3bad624c9 (patch) | |
tree | b7d6b30bd3c9294b74874c1a48b20a8da8869a69 /src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | |
parent | 581c320e04949300d6c3bee71fb5fc1a557f9263 (diff) | |
download | wix-fb54576f1d05e82ba47cd718c4c4f8b3bad624c9.tar.gz wix-fb54576f1d05e82ba47cd718c4c4f8b3bad624c9.tar.bz2 wix-fb54576f1d05e82ba47cd718c4c4f8b3bad624c9.zip |
Give BA process id and option to wait for cancelled process to exit.
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs index d2e8a1ca..fa553919 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | |||
@@ -148,6 +148,21 @@ namespace WixToolsetTest.BurnE2E | |||
148 | } | 148 | } |
149 | 149 | ||
150 | /// <summary> | 150 | /// <summary> |
151 | /// Requests the BA to log the test registry value for the specified package. | ||
152 | /// </summary> | ||
153 | /// <param name="packageId"></param> | ||
154 | /// <param name="value"></param> | ||
155 | public void SetPackageRecordTestRegistryValue(string packageId, string value = "true") | ||
156 | { | ||
157 | this.SetPackageState(packageId, "RecordTestRegistryValue", value); | ||
158 | } | ||
159 | |||
160 | public void SetPackageProcessCancelAction(string packageId, BOOTSTRAPPER_EXECUTEPROCESSCANCEL_ACTION action) | ||
161 | { | ||
162 | this.SetPackageState(packageId, "ProcessCancelAction", action.ToString()); | ||
163 | } | ||
164 | |||
165 | /// <summary> | ||
151 | /// Sets the number of times to re-run the Detect phase. | 166 | /// Sets the number of times to re-run the Detect phase. |
152 | /// </summary> | 167 | /// </summary> |
153 | /// <param name="state">Number of times to run Detect (after the first, normal, Detect).</param> | 168 | /// <param name="state">Number of times to run Detect (after the first, normal, Detect).</param> |