summaryrefslogtreecommitdiff
path: root/test/disabled/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-04-12 21:45:17 +0000
committerPaul Phillips <paulp@improving.org>2010-04-12 21:45:17 +0000
commit9e155f4956ad608342eb760c6939ebd9aa1a51a8 (patch)
tree199009fe071c8ec65215b31b77b40e9a2f8c4494 /test/disabled/run
parent7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c (diff)
downloadscala-9e155f4956ad608342eb760c6939ebd9aa1a51a8.tar.gz
scala-9e155f4956ad608342eb760c6939ebd9aa1a51a8.tar.bz2
scala-9e155f4956ad608342eb760c6939ebd9aa1a51a8.zip
Disabling what I think are the last two failing...
Disabling what I think are the last two failing tests, one each of the two leading bugs among those we've seen here today on testing theater: "could not find toMap: (x$1: scala.collection.TraversableOnce,x$2: Predef$<:<)" and "scala.tools.nsc.symtab.Types$TypeError: method react cannot be accessed in java.lang.Object with scala.actors.Reactor[Any] No review but hey lets' see if we can re-enable these tests soonish.
Diffstat (limited to 'test/disabled/run')
-rw-r--r--test/disabled/run/infiniteloop.check1
-rw-r--r--test/disabled/run/infiniteloop.scala13
2 files changed, 14 insertions, 0 deletions
diff --git a/test/disabled/run/infiniteloop.check b/test/disabled/run/infiniteloop.check
new file mode 100644
index 0000000000..6f8cf6e4d9
--- /dev/null
+++ b/test/disabled/run/infiniteloop.check
@@ -0,0 +1 @@
+Stream(512, 256, 128, 64, 32, 16, 8, 4, 2, 1)
diff --git a/test/disabled/run/infiniteloop.scala b/test/disabled/run/infiniteloop.scala
new file mode 100644
index 0000000000..f15674a676
--- /dev/null
+++ b/test/disabled/run/infiniteloop.scala
@@ -0,0 +1,13 @@
+/** Tests the optimiser (not to loop on 'reverse'). */
+
+object Test extends Application {
+ def foo {
+ val s3 = Stream.range(1, 1000) //100000 (ticket #153: Stackoverflow)
+
+ // ticket #153
+ def powers(x: Int) = if ((x&(x-1)) == 0) Some(x) else None
+ println(s3.flatMap(powers).reverse)
+ }
+
+ foo
+}