diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInCompilingEvaluator.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInCompilingEvaluator.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInCreateExpression.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInCreateExpression.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInCustom.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInCustom.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInExtraVariables.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInExtraVariables.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInFilters.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInFilters.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInFindElementAtBreakpoint.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInFindElementAtBreakpoint.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInFrame.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInFrame.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInJavaContext.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInJavaContext.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInLabels.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInLabels.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInLambdas.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInLambdas.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInLibrary.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInLibrary.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInMultipleBreakpoints.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInMultipleBreakpoints.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInRenderer.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInRenderer.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInSingleBreakpoint.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInSingleBreakpoint.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInSmartStepInto.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInSmartStepInto.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepInto.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepInto.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepIntoOnly.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepIntoOnly.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepOut.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepOut.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepOver.out b/idea/testData/debugger/tinyApp/outs/allFilesPresentInStepOver.out deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java b/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java index ff8ce829db5..b24a8a2ecb8 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java +++ b/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java @@ -349,6 +349,10 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase { @Override protected void checkTestOutput() throws Exception { + if (KotlinTestUtils.isAllFilesPresentTest(getTestName(false))) { + return; + } + try { super.checkTestOutput(); }