Skip to content

Commit b39cd03

Browse files
committed
SR-9930: Re-enable assertion in TestProcess.test_passthrough_environment()
- This test is believed to have broken due to thread issues when reading from stdout/stderr of the child process. - The threading issue was fixed in swiftlang#2523
1 parent 1c1e52a commit b39cd03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Tests/Foundation/Tests/TestProcess.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,7 @@ class TestProcess : XCTestCase {
217217
let env = try parseEnv(output)
218218
XCTAssertGreaterThan(env.count, 0)
219219
} catch {
220-
// FIXME: SR-9930 parseEnv fails if an environment variable contains
221-
// a newline.
222-
// XCTFail("Test failed: \(error)")
220+
XCTFail("Test failed: \(error)")
223221
}
224222
}
225223

0 commit comments

Comments
 (0)