diff --git a/compiler/tests/org/jetbrains/kotlin/jvm/compiler/FirCompileKotlinAgainstCustomBinariesTest.kt b/compiler/tests/org/jetbrains/kotlin/jvm/compiler/FirCompileKotlinAgainstCustomBinariesTest.kt index d93952a7247..8a4c411d247 100644 --- a/compiler/tests/org/jetbrains/kotlin/jvm/compiler/FirCompileKotlinAgainstCustomBinariesTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/jvm/compiler/FirCompileKotlinAgainstCustomBinariesTest.kt @@ -75,16 +75,16 @@ class FirCompileKotlinAgainstCustomBinariesTest : AbstractCompileKotlinAgainstCu } fun testPreReleaseFlagIsConsistentBetweenStdlibAndCurrentCompiler() { - try { +// try { val stdlib = JarFile(PathUtil.kotlinPathsForCompiler.stdlibPath) val classFromStdlib = stdlib.getEntry(KotlinVersion::class.java.name.replace(".", "/") + ".class") checkPreReleaseness( stdlib.getInputStream(classFromStdlib).readBytes(), KotlinCompilerVersion.isPreRelease() ) - } catch (e: Throwable) { - return - } - error("Looks like test can be unmuted") +// } catch (e: Throwable) { +// return +// } +// error("Looks like test can be unmuted") } }