From a93c382301f7c5f4c0bc597a42f2afcb1cc8a48c Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Sun, 12 Feb 2017 08:56:50 +0300 Subject: [PATCH] reporting: fix path to final test report. --- buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy b/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy index d366cf78cd9..5c967f26e0e 100644 --- a/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy +++ b/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy @@ -26,7 +26,7 @@ class Reporter extends DefaultTask { @TaskAction public void report() { def stats = new RunExternalTestGroup.Statistics() - def obj = new JsonSlurper().parse(new File(reportHome, "results.json")) + def obj = new JsonSlurper().parse(new File(reportHome, "external/results.json")) stats.total = obj.statistics.total stats.passed = obj.statistics.passed stats.failed = obj.statistics.failed