We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faaea7c commit 76714d2Copy full SHA for 76714d2
Tests/UtilityTests/ShellTests.swift
@@ -23,14 +23,20 @@ class ShellTests: XCTestCase {
23
}
24
25
func testPopenWithBufferLargerThanThatAllocated() {
26
+ // FIXME: Disabled due to https://bugs.swift.org/browse/SR-2703
27
+ #if false
28
let path = AbsolutePath(#file).parentDirectory.parentDirectory.appending(components: "GetTests", "VersionGraphTests.swift")
29
XCTAssertGreaterThan(try! popen(["cat", path.asString]).characters.count, 4096)
30
+ #endif
31
32
33
func testPopenWithBinaryOutput() {
34
35
36
if (try? popen(["cat", "/bin/cat"])) != nil {
37
XCTFail("popen succeeded but should have faileds")
38
39
40
41
42
static var allTests = [
0 commit comments