summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-10-30 15:17:05 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-11-01 10:45:03 -0400
commitc9efa2f6cf9fcfff00a29aeae5b400aaf5518e32 (patch)
treeb919a9847113296ba05e27352788fdee277a7131 /test
parent79087c79c402ababbb50fa9d1e4e78b0e52189c6 (diff)
downloadscala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.tar.gz
scala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.tar.bz2
scala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.zip
Removing actors-migration from main repository so it can live on elsewhere.
* Removes actors-migration hooks from partest * Removes actors-migration code * removes actors-migration tests * removes actors-migration distribution packaging.
Diffstat (limited to 'test')
-rw-r--r--test/files/jvm/actmig-remote-actor-self.check1
-rw-r--r--test/files/jvm/actmig-remote-actor-self.scala34
2 files changed, 0 insertions, 35 deletions
diff --git a/test/files/jvm/actmig-remote-actor-self.check b/test/files/jvm/actmig-remote-actor-self.check
deleted file mode 100644
index 79d23cb337..0000000000
--- a/test/files/jvm/actmig-remote-actor-self.check
+++ /dev/null
@@ -1 +0,0 @@
-registered
diff --git a/test/files/jvm/actmig-remote-actor-self.scala b/test/files/jvm/actmig-remote-actor-self.scala
deleted file mode 100644
index 2b994f6081..0000000000
--- a/test/files/jvm/actmig-remote-actor-self.scala
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * NOTE: Code snippets from this test are included in the Actor Migration Guide. In case you change
- * code in these tests prior to the 2.10.0 release please send the notification to @vjovanov.
- */
-import scala.actors._
-import scala.actors.migration._
-import scala.actors.remote._
-import scala.actors.remote.RemoteActor._
-import scala.concurrent._
-import scala.concurrent.duration._
-
-object Test {
- val finished = Promise[Boolean]
-
- def main(args: Array[String]): Unit = {
-
- // can fail with class cast exception in alive
- val myAkkaActor = ActorDSL.actor(new StashingActor {
- override def preStart() = {
- alive(42013)
- println("registered")
- finished success true
- context.stop(self)
- }
-
- def receive = {
- case x: Int =>
- }
- })
-
- Await.result(finished.future, Duration.Inf).toString
- }
-
-}