[K/N][Tests] Split filecheck part from test direct.kt

^KT-61259
This commit is contained in:
Vladimir Sukharev
2024-01-19 17:48:35 +01:00
parent 833e125450
commit 39e2187d31
23 changed files with 304 additions and 31 deletions
@@ -332,16 +332,20 @@ internal fun TestGroupSuite.generateFirLowLevelApiTests() {
testClass<AbstractLLFirBlackBoxCodegenBasedTest> {
model(
"codegen/box",
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
excludeDirs = listOf(
"script", // script is excluded until KT-60127 is implemented
"cinterop", "fileCheck/cinterop", // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
)
)
}
testClass<AbstractLLFirReversedBlackBoxCodegenBasedTest> {
model(
"codegen/box",
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
excludeDirs = listOf(
"script", // script is excluded until KT-60127 is implemented
"cinterop", "fileCheck/cinterop", // CInterop tests contain .DEF .H .CPP .M files, which are invalid for Compiler Core new test system
)
)
}