From e200a8e3ffe10eb132c2cc0f5038cc42ce89414c Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 19 Jul 2012 07:36:20 -0700 Subject: Print the stack trace. We're not completely blind in there, are we. --- src/partest/scala/tools/partest/nest/DirectRunner.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/partest') diff --git a/src/partest/scala/tools/partest/nest/DirectRunner.scala b/src/partest/scala/tools/partest/nest/DirectRunner.scala index 86c790f9dd..c254472342 100644 --- a/src/partest/scala/tools/partest/nest/DirectRunner.scala +++ b/src/partest/scala/tools/partest/nest/DirectRunner.scala @@ -61,8 +61,9 @@ trait DirectRunner { pool.shutdown() try if (!pool.awaitTermination(4, TimeUnit.HOURS)) NestUI.warning("Thread pool timeout elapsed before all tests were complete!") - catch { case _: InterruptedException => + catch { case t: InterruptedException => NestUI.warning("Thread pool was interrupted") + t.printStackTrace() } for ((file, future) <- futures) yield { -- cgit v1.2.3