From bc791369f79f2d1a72a93674eb7b0f34ca58d8d1 Mon Sep 17 00:00:00 2001 From: Philipp Haller Date: Tue, 13 Apr 2010 14:41:02 +0000 Subject: Hardened actor tests. No review. --- test/files/jvm/future-termination.scala | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/files/jvm/future-termination.scala') diff --git a/test/files/jvm/future-termination.scala b/test/files/jvm/future-termination.scala index c448a88aa7..688de60c3b 100644 --- a/test/files/jvm/future-termination.scala +++ b/test/files/jvm/future-termination.scala @@ -4,11 +4,16 @@ import scala.actors.Futures object Test { def main(args: Array[String]) { + try { val meaningOfLife = Futures.future { Thread.sleep(5000) // pretend this is a harder problem than it is println("I have the answer!") 42 } println("I can't wait that long, bye.") + } catch { + case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] => + e.printStackTrace() + } } } -- cgit v1.2.3