From b5efbac7042a227f1c8564ebaadb9b46223dce36 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Fri, 8 Apr 2022 11:36:31 +0300 Subject: [PATCH] [Native][tests] Add stub generator tests to "run" More details: Add ":kotlin-native:Interop:StubGenerator:check" as a dependency to ":kotlin-native:backend.native:tests:run" task. This task is already present in ":kotlin-native:backend.native:tests:sanity" and was missing in "run" just by accident. --- kotlin-native/backend.native/tests/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index f36a2d0f9e3..4504d5cfc01 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -184,6 +184,7 @@ run { dependsOn(tasksOf(FileCheckTest)) } dependsOn(":kotlin-native:Interop:Indexer:check") + dependsOn(":kotlin-native:Interop:StubGenerator:check") } task sanity {