Skip to content

[cxx-interop] Enable an overlay test on Linux #69363

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

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ CxxSequenceTestSuite.test("SimpleSequence to Swift.Array") {
expectEqual([1, 2, 3, 4] as [Int32], array)
}

#if !os(Linux) // this test crashes on Linux (https://github.com/apple/swift/issues/66363)
CxxSequenceTestSuite.test("SimpleCopyAwareSequence to Swift.Array") {
copiesCount = 0

Expand All @@ -23,7 +22,6 @@ CxxSequenceTestSuite.test("SimpleCopyAwareSequence to Swift.Array") {

expectEqual(0, copiesCount) // make sure we don't copy the C++ sequence value unnecessarily
}
#endif

CxxSequenceTestSuite.test("SimpleSequenceWithOutOfLineEqualEqual to Swift.Array") {
let seq = SimpleSequenceWithOutOfLineEqualEqual()
Expand Down