Skip to content

Commit 5561f1a

Browse files
authored
Merge pull request #69692 from apple/egorzhdan/reenable-pointee-test-linux
Revert "[cxx-interop] Partially disable a test on Linux"
2 parents add012c + 4cf34ab commit 5561f1a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ StdOptionalTestSuite.test("pointee") {
1414
let pointee = nonNilOpt.pointee
1515
expectEqual(123, pointee)
1616

17-
#if !os(Linux) // crashes on Ubuntu 18.04 (rdar://113414160)
1817
var modifiedOpt = getNilOptional()
1918
modifiedOpt.pointee = 777
2019
expectEqual(777, modifiedOpt.pointee)
21-
#endif
2220
}
2321

2422
StdOptionalTestSuite.test("std::optional => Swift.Optional") {

0 commit comments

Comments
 (0)