From 8d1c82f9ac13ccdbaac1d8955b8546d79915d763 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Tue, 9 Jun 2020 17:28:38 +0300 Subject: [PATCH] Exclude standard test task from execution to avoid debugger tests instantiation --- backend.native/tests/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 265aa08c8f3..4cc4f9d70c0 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -4491,6 +4491,12 @@ dependencies { compile 'junit:junit:4.12' } +project.tasks.named("test").configure { + // Don't run this task as it will try to execute debugger tests too + // that is not desired as they are platform-specific. + enabled = false +} + project.tasks.register("debugger_test", Test.class) { enabled = (target.family == Family.OSX) // KT-30366 testLogging { exceptionFormat = 'full' }