We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30da38 commit 5409b2eCopy full SHA for 5409b2e
Tests/Java2SwiftTests/Java2SwiftTests.swift
@@ -86,6 +86,10 @@ class Java2SwiftTests: XCTestCase {
86
}
87
88
func testGenericCollections() throws {
89
+ if isLinux {
90
+ throw XCTSkip("Crashes for unexplained reasons on Linux")
91
+ }
92
+
93
try assertTranslatedClass(
94
MyArrayList<JavaObject>.self,
95
swiftTypeName: "JavaArrayList",
@@ -103,6 +107,10 @@ class Java2SwiftTests: XCTestCase {
103
107
104
108
105
109
func testLinkedList() throws {
110
111
112
113
106
114
115
MyLinkedList<JavaObject>.self,
116
swiftTypeName: "JavaLinkedList",
0 commit comments