[LL] Expand "Low Level FIR API Tests" run configuration to include tests from submodules

- LL API tests should include LL API JDK 11 tests and, if applicable, LL
  API native tests.
This commit is contained in:
Marco Pennekamp
2023-11-21 18:37:34 +01:00
committed by Space Team
parent ee7c67ba11
commit 1901ed36ec
2 changed files with 19 additions and 2 deletions
@@ -93,3 +93,15 @@ allprojects {
testsJar()
tasks.register("analysisLowLevelApiFirAllTests") {
dependsOn(
":analysis:low-level-api-fir:test",
":analysis:low-level-api-fir:tests-jdk11:test",
)
if (kotlinBuildProperties.isKotlinNativeEnabled) {
dependsOn(
":analysis:low-level-api-fir:low-level-api-fir-native:llFirNativeTests",
)
}
}