From 573c00f1570eb2f978349a5fddf0433daf162d96 Mon Sep 17 00:00:00 2001 From: Vojin Jovanovic Date: Fri, 25 May 2012 11:35:22 +0200 Subject: Removing non-deterministic actor migration tests. Testing these issues takes significant amounts of time so I am temporarely removing them from the master. The issue is not in the code but in the tests output order. --- test/files/jvm/actmig-hierarchy.scala | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 test/files/jvm/actmig-hierarchy.scala (limited to 'test/files/jvm/actmig-hierarchy.scala') diff --git a/test/files/jvm/actmig-hierarchy.scala b/test/files/jvm/actmig-hierarchy.scala deleted file mode 100644 index 7277329d85..0000000000 --- a/test/files/jvm/actmig-hierarchy.scala +++ /dev/null @@ -1,44 +0,0 @@ -import scala.actors._ - - -class ReactorActor extends Reactor[String] { - def act() { - var cond = true - loopWhile(cond) { - react { - case x if x == "hello1" => println(x.dropRight(1)) - case "exit" => cond = false - } - } - } -} - -class ReplyActor extends ReplyReactor { - def act() { - var cond = true - loopWhile(cond) { - react { - case "hello" => println("hello") - case "exit" => cond = false; - } - } - } -} - - - -object Test { - - def main(args: Array[String]) { - val reactorActor = new ReactorActor - val replyActor = new ReplyActor - reactorActor.start() - replyActor.start() - - reactorActor ! "hello1" - replyActor ! "hello" - - reactorActor ! "exit" - replyActor ! "exit" - } -} -- cgit v1.2.3