[Native][tests] Add separate Gradle tasks to run tests for stdlib and kotlin-test libraries

This commit is contained in:
Dmitriy Dolovov
2022-02-09 15:55:32 +03:00
parent 174f4cd220
commit ca45252143
3 changed files with 44 additions and 24 deletions
+2
View File
@@ -151,6 +151,8 @@ fun nativeTest(taskName: String, vararg tags: String) = projectTest(taskName, jU
// Tasks that run different sorts of tests. Most frequent use case: running specific tests at TeamCity.
val infrastructureTest = nativeTest("infrastructureTest", "infrastructure")
val codegenBoxTest = nativeTest("codegenBoxTest", "codegen")
val stdlibTest = nativeTest("stdlibTest", "stdlib")
val kotlinTestLibraryTest = nativeTest("kotlinTestLibraryTest", "kotlin-test")
val klibAbiTest = nativeTest("klibAbiTest", "klib")
// "test" task is created by convention. We can't just remove it. Let's enable it in developer's environment, so it can be used