summaryrefslogtreecommitdiff
path: root/test/disabled
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-07-05 16:49:40 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-07-05 16:49:40 +0200
commitd2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4 (patch)
treecd32e94c9dba1e1990ac8d738a7e2b958e7c0142 /test/disabled
parent171a1d8bc859947d80d4728c251abe330dbe9802 (diff)
downloadscala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.tar.gz
scala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.tar.bz2
scala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.zip
SI-5981, SI-5979, SI-5973 Closed. Maintenance to Try.
Diffstat (limited to 'test/disabled')
-rw-r--r--test/disabled/run/syncchannel.check1
-rw-r--r--test/disabled/run/syncchannel.scala6
2 files changed, 7 insertions, 0 deletions
diff --git a/test/disabled/run/syncchannel.check b/test/disabled/run/syncchannel.check
new file mode 100644
index 0000000000..d81cc0710e
--- /dev/null
+++ b/test/disabled/run/syncchannel.check
@@ -0,0 +1 @@
+42
diff --git a/test/disabled/run/syncchannel.scala b/test/disabled/run/syncchannel.scala
new file mode 100644
index 0000000000..66ae47fd0a
--- /dev/null
+++ b/test/disabled/run/syncchannel.scala
@@ -0,0 +1,6 @@
+object Test {
+ def main(args: Array[String]) {
+ val c = new scala.concurrent.SyncChannel[Int]
+ scala.concurrent.ops.par({ c.write(42) }, { println(c.read) })
+ }
+}