K2 Scripting: disable K2 lightTree-based script tests

they were enabled by mistake and do not work properly until
LT parsing is implemented
depends on #KT-60127
This commit is contained in:
Ilya Chernikov
2024-01-19 10:43:51 +01:00
committed by Space Team
parent a5c2eb66a2
commit d6c9a492ad
7 changed files with 13 additions and 270 deletions
@@ -332,14 +332,16 @@ internal fun TestGroupSuite.generateFirLowLevelApiTests() {
testClass<AbstractLLFirBlackBoxCodegenBasedTest> {
model(
"codegen/box",
excludeDirs = listOf("cinterop") // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
excludeDirs = listOf("cinterop", "script") // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
// script is excluded until KT-60127 is implemented
)
}
testClass<AbstractLLFirReversedBlackBoxCodegenBasedTest> {
model(
"codegen/box",
excludeDirs = listOf("cinterop") // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
excludeDirs = listOf("cinterop", "script") // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
// script is excluded until KT-60127 is implemented
)
}