Skip to content

Commit f49e408

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

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@ static void beforeAll() {
3434
}
3535

3636
@Test
37-
@DisabledOnOs(OS.LINUX) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
3837
void call_helloWorld() {
3938
ExampleSwiftLibrary.helloWorld();
4039

4140
assertNotNull(ExampleSwiftLibrary.helloWorld$address());
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 call_globalTakeInt() {
4745
ExampleSwiftLibrary.globalTakeInt(12);
4846

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();

Samples/SwiftKitSampleApp/src/test/java/org/swift/swiftkit/MySwiftClassTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ static void beforeAll() {
3636
}
3737

3838
@Test
39-
@DisabledOnOs(OS.LINUX) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
4039
void call_retain_retainCount_release() {
4140
var obj = new MySwiftClass(1, 2);
4241

0 commit comments

Comments
 (0)