summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-05-31 22:03:36 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-05-31 22:03:36 +0000
commite0a4e468b76061840c585824f93163529dce73f6 (patch)
tree0fe41836801b56b19d5854913b2566d74c748b81 /test/files/jvm
parent7aab2a8d9e6254ee30e6be338ad0ae968c2d165c (diff)
downloadscala-e0a4e468b76061840c585824f93163529dce73f6.tar.gz
scala-e0a4e468b76061840c585824f93163529dce73f6.tar.bz2
scala-e0a4e468b76061840c585824f93163529dce73f6.zip
Moved test for offline bug fixing.
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/terminateLinked.check1
-rw-r--r--test/files/jvm/terminateLinked.scala24
2 files changed, 0 insertions, 25 deletions
diff --git a/test/files/jvm/terminateLinked.check b/test/files/jvm/terminateLinked.check
deleted file mode 100644
index a965a70ed4..0000000000
--- a/test/files/jvm/terminateLinked.check
+++ /dev/null
@@ -1 +0,0 @@
-Done
diff --git a/test/files/jvm/terminateLinked.scala b/test/files/jvm/terminateLinked.scala
deleted file mode 100644
index 2a3b7fb49e..0000000000
--- a/test/files/jvm/terminateLinked.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-import scala.actors.Actor
-import Actor._
-
-object Test {
- def main(args: Array[String]) {
- val a = actor {
- for (_ <- 1 to 10)
- receive {
- case b: Actor => link(b)
- }
- throw new Exception
- }
-
- for (_ <- 1 to 10)
- actor {
- a ! self
- react {
- case _ =>
- }
- }
-
- println("Done")
- }
-}