Attempt to fix ABI tests on TC

Locally they work fine
This commit is contained in:
Alexey Tsvetkov
2018-12-11 16:56:35 +03:00
parent 09dbf427ee
commit b87058b532
2 changed files with 2 additions and 2 deletions
+1
View File
@@ -20,6 +20,7 @@ dependencies {
testCompile(commonDep("junit:junit"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl"))
testRuntime(intellijCoreDep())
}
sourceSets {
@@ -5,7 +5,6 @@
package org.jetbrains.kotlin.jvm.abi
import com.intellij.testFramework.UsefulTestCase
import junit.framework.TestCase
import org.jetbrains.kotlin.cli.common.ExitCode
import org.jetbrains.kotlin.cli.jvm.K2JVMCompiler
@@ -74,6 +73,6 @@ abstract class BaseJvmAbiTest : TestCase() {
}
protected val kotlinJvmStdlib = File("dist/kotlinc/lib/kotlin-stdlib.jar").also {
UsefulTestCase.assertExists(it)
check(it.exists()) { "Stdlib file '$it' does not exist" }
}
}