diff --git a/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinInspectionTest.kt b/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinInspectionTest.kt index 877cf51f644..26203174058 100644 --- a/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinInspectionTest.kt +++ b/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinInspectionTest.kt @@ -129,16 +129,16 @@ class AllKotlinInspectionTest : DaemonAnalyzerTestCase() { println("##teamcity[testStarted name='$name' captureStandardOutput='true']") val (time, errors) = block() if (errors.isNotEmpty()) { - - val detailsWriter = StringWriter() - val errorDetailsPrintWriter = PrintWriter(detailsWriter) - errors.forEach { - it.printStackTrace(errorDetailsPrintWriter) - errorDetailsPrintWriter.println() - } - errorDetailsPrintWriter.close() - val details = detailsWriter.toString() - println("##teamcity[testFailed name='$name' message='Exceptions reported' details='${details.tcEscape()}']") +// +// val detailsWriter = StringWriter() +// val errorDetailsPrintWriter = PrintWriter(detailsWriter) +// errors.forEach { +// it.printStackTrace(errorDetailsPrintWriter) +// errorDetailsPrintWriter.println() +// } +// errorDetailsPrintWriter.close() +// val details = detailsWriter.toString() + println("##teamcity[testFailed name='$name' message='Exceptions reported' details='exceptions were thrown while inspecting']") } else { println("##teamcity[testFinished name='$name' duration='$time']") }