From 1f97c77861d7309e0aeb734fc66d049988d57bec Mon Sep 17 00:00:00 2001 From: Olivier Blanvillain Date: Tue, 7 Feb 2017 15:49:11 +0100 Subject: Add println in TestScripts to prevent CI timeout --- bin/test/TestScripts.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bin/test') diff --git a/bin/test/TestScripts.scala b/bin/test/TestScripts.scala index d9fab601c..025ee7c90 100644 --- a/bin/test/TestScripts.scala +++ b/bin/test/TestScripts.scala @@ -18,7 +18,9 @@ class TestScripts { private def executeScript(script: String): (Int, String) = { val sb = new StringBuilder val ret = Process(script) ! ProcessLogger(sb append _) - (ret, sb.toString) + val output = sb.toString + println(output) // For CI, otherwise "terminal inactive for 5m0s, build cancelled" + (ret, output) } private def delete(path: String) = { -- cgit v1.2.3