diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 1dd5443611f..1739d7bfe73 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -172,13 +172,15 @@ task resultsTask() { } } -boolean isExcluded(String task) { - // List of tests that fail due to unresolved comiler bugs - def excluded = [ "codegen/box/functions/bigArity", "codegen/box/functions/functionExpression" ] +boolean isExcluded(String dir) { + // List of tests that fail due to unresolved compiler bugs + def excluded = [ "codegen/box/functions/bigArity", // KT-26140 + "codegen/box/functions/functionExpression", // KT-26973 + "codegen/box/inlineClasses" ] // KT-27665 boolean result = false excluded.forEach { - if (task.contains(it)) { + if (dir.endsWith(it)) { result = true } }