Skip JVM_TARGET and SKIP_JDK6 tests on android

This commit is contained in:
Mikhael Bogdanov
2018-10-19 10:33:00 +02:00
parent ce1d6e7217
commit 9c3b367b93
@@ -202,6 +202,10 @@ class CodegenTestsOnAndroidGenerator private constructor(private val pathManager
if (fullFileText.contains("// WITH_COROUTINES")) continue
// TODO: Support jvm assertions
if (fullFileText.contains("// KOTLIN_CONFIGURATION_FLAGS: ASSERTIONS_MODE=jvm")) continue
// TODO: support JVM 8 test with D8
if (fullFileText.contains("// JVM_TARGET")) continue
// TODO: support SKIP_JDK6 on new platforms
if (fullFileText.contains("// SKIP_JDK6")) continue
if (hasBoxMethod(fullFileText)) {
val testFiles = createTestFiles(file, fullFileText)