[PL] Unmute FIR-based tests that pass now

This commit is contained in:
Dmitriy Dolovov
2023-05-22 18:41:42 +02:00
committed by Space Team
parent 650a3c467d
commit 69a1514b14
@@ -61,15 +61,8 @@ abstract class AbstractNativePartialLinkageTest : AbstractNativeSimpleTest() {
override fun onNonEmptyBuildDirectory(directory: File) = backupDirectoryContents(directory)
// Temporarily mute TA tests on FIR FE with caches.
override fun isIgnoredTest(projectInfo: ProjectInfo) = when {
super.isIgnoredTest(projectInfo) -> true
projectInfo.name == "typeAliasChanges"
&& testModeName.endsWith("STATIC_EVERYWHERE")
&& this@AbstractNativePartialLinkageTest::class.java.simpleName.startsWith("Fir") -> true
projectInfo.name == "externalDeclarations" -> true
else -> false
}
override fun isIgnoredTest(projectInfo: ProjectInfo) =
super.isIgnoredTest(projectInfo) || projectInfo.name == "externalDeclarations"
override fun onIgnoredTest() = throw TestAbortedException()
}