Skip to content

Commit cd24576

Browse files
authored
Merge pull request swiftlang#1435 from lancep/revert-string-comparison
revert string comparison changes
2 parents 6c1c38c + e51fb9b commit cd24576

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

TestFoundation/TestNSString.swift

+8-1
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,14 @@ let comparisonTests = [
12381238
// ASCII cases
12391239
ComparisonTest("t", "tt"),
12401240
ComparisonTest("t", "Tt"),
1241-
ComparisonTest("\u{0}", ""),
1241+
ComparisonTest("\u{0}", "",
1242+
reason: {
1243+
#if _runtime(_ObjC)
1244+
return ""
1245+
#else
1246+
return "https://bugs.swift.org/browse/SR-332"
1247+
#endif
1248+
}()),
12421249
ComparisonTest("\u{0}", "\u{0}",
12431250
reason: "https://bugs.swift.org/browse/SR-332"),
12441251
ComparisonTest("\r\n", "t"),

0 commit comments

Comments
 (0)