aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorOlivier Blanvillain <olivier.blanvillain@gmail.com>2017-02-07 15:49:11 +0100
committerOlivier Blanvillain <olivier.blanvillain@gmail.com>2017-02-07 15:49:11 +0100
commit1f97c77861d7309e0aeb734fc66d049988d57bec (patch)
tree1fd2f3fa32ce8f2263ded7d9487cdcd28a1939ae /bin
parentca6563a2d47d5a340f13c97b570afb923101de8a (diff)
downloaddotty-1f97c77861d7309e0aeb734fc66d049988d57bec.tar.gz
dotty-1f97c77861d7309e0aeb734fc66d049988d57bec.tar.bz2
dotty-1f97c77861d7309e0aeb734fc66d049988d57bec.zip
Add println in TestScripts to prevent CI timeout
Diffstat (limited to 'bin')
-rw-r--r--bin/test/TestScripts.scala4
1 files changed, 3 insertions, 1 deletions
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) = {