@@ -21,7 +21,7 @@ _ = signal(SIGPIPE, SIG_IGN)
21
21
#endif
22
22
23
23
// For the Swift version of the Foundation tests, we must manually list all test cases here.
24
- XCTMain ( [
24
+ var allTestCases = [
25
25
testCase ( TestAffineTransform . allTests) ,
26
26
testCase ( TestNSArray . allTests) ,
27
27
testCase ( TestBundle . allTests) ,
@@ -80,7 +80,7 @@ XCTMain([
80
80
testCase ( TestNSTextCheckingResult . allTests) ,
81
81
testCase ( TestTimer . allTests) ,
82
82
testCase ( TestTimeZone . allTests) ,
83
- testCase ( TestURL . allTests) ,
83
+ /* ⚠️ */ // testCase(TestURL.allTests),
84
84
testCase ( TestURLComponents . allTests) ,
85
85
testCase ( TestURLCredential . allTests) ,
86
86
testCase ( TestURLProtectionSpace . allTests) ,
@@ -112,4 +112,10 @@ XCTMain([
112
112
testCase ( TestDimension . allTests) ,
113
113
testCase ( TestMeasurement . allTests) ,
114
114
testCase ( TestNSLock . allTests) ,
115
- ] )
115
+ ]
116
+
117
+ appendTestCaseExpectedToFail ( " TestURL is not deleting its temporary directory correctly. https://bugs.swift.org/browse/SR-10538 " ,
118
+ TestURL . allTests,
119
+ into: & allTestCases)
120
+
121
+ XCTMain ( allTestCases)
0 commit comments