Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable a failing test: TestCharacterSet.test_moreSetOperations #9055

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/stdlib/TestCharacterSet.swift
Expand Up @@ -283,6 +283,8 @@ class TestCharacterSet : TestCharacterSetSuper {
// fix that corrected this behavior.
// TODO: figure out why the simulator is claiming this as a failure.
// https://bugs.swift.org/browse/SR-4457

/* Disabled now: rdar://problem/31746923
#if os(macOS)
if #available(OSX 10.12.4, iOS 10.3, watchOS 3.2, tvOS 10.2, *) {
let abcSet = CharacterSet(charactersIn: "abc")
Expand All @@ -297,6 +299,7 @@ class TestCharacterSet : TestCharacterSetSuper {
expectFalse(abcSet.isStrictSuperset(of:abcdSet))
}
#endif
*/
}
}

Expand Down