Native: enable some of ObjCExport tests with new GC

This commit is contained in:
Svyatoslav Scherbina
2021-05-25 16:04:11 +03:00
committed by Space
parent fa36ccedeb
commit e4b723fe4a
2 changed files with 9 additions and 13 deletions
@@ -1403,7 +1403,10 @@ class ValuesTests : SimpleTestProvider {
test("TestInvalidIdentifiers", testInvalidIdentifiers)
test("TestDeprecation", testDeprecation)
test("TestWeakRefs", testWeakRefs)
test("TestSharedRefs", TestSharedRefs().test)
if !ValuesKt.isExperimentalMM {
// Experimental MM doesn't support multiple mutators yet.
test("TestSharedRefs", TestSharedRefs().test)
}
test("TestClassTypeCheck", testClassTypeCheck)
test("TestInterfaceTypeCheck", testInterfaceTypeCheck)
test("TestGH3503_1", testGH3503_1)
@@ -1416,6 +1419,9 @@ class ValuesTests : SimpleTestProvider {
test("TestFakeOverrideInInterface", testFakeOverrideInInterface)
// Stress test, must remain the last one:
test("TestGH2931", testGH2931)
if !ValuesKt.isExperimentalMM {
// Experimental MM doesn't support multiple mutators yet.
test("TestGH2931", testGH2931)
}
}
}