[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
+7 -2
View File
@@ -4,18 +4,23 @@
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value=":analysis:low-level-api-fir:test --tests *" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list />
<list>
<option value="analysisLowLevelApiFirAllTests" />
<option value="--tests" />
<option value="*" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>false</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<RunAsTest>true</RunAsTest>
<method v="2" />
</configuration>
</component>
@@ -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",
)
}
}