summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-08-19 12:36:48 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-08-19 12:36:48 +0000
commit0ffc4725ce6b3c9025df9ddb154c0ecbb54e6b1a (patch)
tree549800188d930ba32b062ac62c36cefd5c8bf457 /src/partest
parent2b18a8b27ef3fb0a09d747d661ed39c1ff0aebed (diff)
downloadscala-0ffc4725ce6b3c9025df9ddb154c0ecbb54e6b1a.tar.gz
scala-0ffc4725ce6b3c9025df9ddb154c0ecbb54e6b1a.tar.bz2
scala-0ffc4725ce6b3c9025df9ddb154c0ecbb54e6b1a.zip
Adjusted timeout in partest to get rid of spuri...
Adjusted timeout in partest to get rid of spurious build failures.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/nest/DirectRunner.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/nest/DirectRunner.scala b/src/partest/scala/tools/partest/nest/DirectRunner.scala
index ba3c2439a5..3cc84b8d89 100644
--- a/src/partest/scala/tools/partest/nest/DirectRunner.scala
+++ b/src/partest/scala/tools/partest/nest/DirectRunner.scala
@@ -54,7 +54,7 @@ trait DirectRunner {
var logsToDelete: List[File] = List()
var outdirsToDelete: List[File] = List()
workers foreach { w =>
- receiveWithin(600 * 1000) {
+ receiveWithin(3600 * 1000) {
case Results(s, f, logs, outdirs) =>
logsToDelete = logsToDelete ::: logs.filter(_.toDelete)
outdirsToDelete = outdirsToDelete ::: outdirs
@@ -62,6 +62,7 @@ trait DirectRunner {
fails += f
case TIMEOUT =>
// add at least one failure
+ NestUI.verbose("worker timed out; adding failed test")
fails += 1
}
}