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:
committed by
Space Team
parent
a5c2eb66a2
commit
d6c9a492ad
+4
-2
@@ -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
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user