Skip to content

Commit b0954ce

Browse files
authored
Merge pull request swiftlang#67542 from apple/egorzhdan/enable-unordered-test
[cxx-interop] Enable a test on Linux
2 parents 1f99204 + 5dfefe6 commit b0954ce

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/Interop/Cxx/stdlib/use-std-set.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ StdSetTestSuite.test("SetOfCInt.insert") {
7474
expectTrue(s.contains(123))
7575
}
7676

77-
#if !os(Linux) // FIXME: https://github.com/apple/swift/issues/66767 / rdar://105220600
7877
StdSetTestSuite.test("UnorderedSetOfCInt.insert") {
7978
var s = UnorderedSetOfCInt()
8079
expectFalse(s.contains(123))
@@ -87,7 +86,6 @@ StdSetTestSuite.test("UnorderedSetOfCInt.insert") {
8786
expectFalse(res2.inserted)
8887
expectTrue(s.contains(123))
8988
}
90-
#endif
9189

9290
StdSetTestSuite.test("SetOfCInt.erase") {
9391
var s = initSetOfCInt()

0 commit comments

Comments
 (0)