diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/ScriptGenTest.kt b/compiler/tests/org/jetbrains/kotlin/codegen/ScriptGenTest.kt index f5a00b6d034..3066b4da8fe 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/ScriptGenTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/codegen/ScriptGenTest.kt @@ -43,7 +43,12 @@ class ScriptGenTest : CodegenTestCase() { super.setUp() additionalDependencies = System.getenv("PROJECT_CLASSES_DIRS")?.split(File.pathSeparator)?.map { File(it) } - ?: listOf("compiler/build/classes/kotlin/test", "build/compiler/classes/kotlin/test", "out/test/compiler.test") + ?: listOf( + "compiler/build/classes/kotlin/test", + "build/compiler/classes/kotlin/test", + "out/test/compiler.test", + "out/test/compiler_test" + ) .mapNotNull { File(it).canonicalFile.takeIf { it.isDirectory } } .takeIf { it.isNotEmpty() } ?: throw IllegalStateException("Unable to get classes output dirs, set PROJECT_CLASSES_DIRS environment variable")