Skip to content

Commit 3514b58

Browse files
committed
enable tests which should not work with swift interface mangled names
1 parent 695f025 commit 3514b58

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Samples/SwiftKitSampleApp/src/test/java/com/example/swift/generated/MySwiftClassTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,19 @@ static void beforeAll() {
3535
}
3636

3737
@Test
38-
@DisabledOnOs(OS.LINUX) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
3938
void test_MySwiftClass_voidMethod() {
4039
MySwiftClass o = new MySwiftClass(12, 42);
4140
o.voidMethod();
4241
}
4342

4443
@Test
45-
@DisabledOnOs(OS.LINUX) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
4644
void test_MySwiftClass_makeIntMethod() {
4745
MySwiftClass o = new MySwiftClass(12, 42);
4846
var got = o.makeIntMethod();
4947
assertEquals(12, got);
5048
}
5149

5250
@Test
53-
@DisabledOnOs(OS.LINUX) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
5451
void test_MySwiftClass_property_len() {
5552
MySwiftClass o = new MySwiftClass(12, 42);
5653
var got = o.makeIntMethod();

0 commit comments

Comments
 (0)