From b41fdd2705b2e33dcb9ccb7e119e8e64714d014a Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 11 May 2021 16:00:54 +0300 Subject: [PATCH] Leave a clue about muted tests with directive for manual processing --- .../tests/org/jetbrains/kotlin/test/KotlinTestUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java b/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java index a1f956044ab..215cbaf6042 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/test/KotlinTestUtils.java @@ -606,6 +606,8 @@ public class KotlinTestUtils { if (PRINT_STACKTRACE_FOR_IGNORED_TESTS) { e.printStackTrace(); + } else { + System.err.println("MUTED TEST with `" + ignoreDirective + "`"); } return; }