summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/jvm/t1652.check2
-rw-r--r--test/files/jvm/t1652.scala11
2 files changed, 0 insertions, 13 deletions
diff --git a/test/files/jvm/t1652.check b/test/files/jvm/t1652.check
deleted file mode 100644
index dfa480ce6e..0000000000
--- a/test/files/jvm/t1652.check
+++ /dev/null
@@ -1,2 +0,0 @@
-OK1
-OK2
diff --git a/test/files/jvm/t1652.scala b/test/files/jvm/t1652.scala
deleted file mode 100644
index 725a9f93db..0000000000
--- a/test/files/jvm/t1652.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-import scala.actors.Actor
-object Test extends Application {
- Actor.actor {
- Actor.reactWithin(1) { case x => println("OK1") }
- }
- Thread.sleep(500) // Wait for scheduler to poll ActorGC
- Actor.actor {
- Actor.reactWithin(1) { case x => println("OK2") }
- }
- Thread.sleep(500)
-}