summaryrefslogtreecommitdiff
path: root/src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-08-19 14:08:23 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-08-19 17:02:27 -0500
commitb72f58abdf6dd5d0020f174358027158cb52cb72 (patch)
tree3070c1f1fa8a74125a2933f23a1be3c514ed1de7 /src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs
parentbbc36178172e4198351f2f84a91faf56c65e1475 (diff)
downloadwix-b72f58abdf6dd5d0020f174358027158cb52cb72.tar.gz
wix-b72f58abdf6dd5d0020f174358027158cb52cb72.tar.bz2
wix-b72f58abdf6dd5d0020f174358027158cb52cb72.zip
Use a dedicated pipe for redirecting logging from the elevated process.
Fixes 6869
Diffstat (limited to '')
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs
index ba793d7a..b751ff75 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/LongPathTests.cs
@@ -284,6 +284,11 @@ namespace WixToolsetTest.BurnE2E
284 { 284 {
285 WixAssert.Skip($"MAX_PATH is being enforced ({baseFolder})"); 285 WixAssert.Skip($"MAX_PATH is being enforced ({baseFolder})");
286 } 286 }
287 else if (lastError == 3)
288 {
289 // TODO: figure out why Windows Sandbox returns this error instead of 206 like all other environments.
290 WixAssert.Skip($"The system cannot find the path specified ({baseFolder})");
291 }
287 throw new Win32Exception(lastError); 292 throw new Win32Exception(lastError);
288 } 293 }
289 } 294 }