summaryrefslogtreecommitdiff
path: root/test/disabled
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-04-12 03:30:26 +0000
committerPaul Phillips <paulp@improving.org>2010-04-12 03:30:26 +0000
commit8ced5e85f8718474e975d0a19327364a32cedb93 (patch)
tree9c11b82ae78fef0053feb086d111be2684a896c2 /test/disabled
parentbf3e7d490048f3b5d07a739e1283ac47173036a5 (diff)
downloadscala-8ced5e85f8718474e975d0a19327364a32cedb93.tar.gz
scala-8ced5e85f8718474e975d0a19327364a32cedb93.tar.bz2
scala-8ced5e85f8718474e975d0a19327364a32cedb93.zip
Disabled the test which is hanging the -optimis...
Disabled the test which is hanging the -optimise run. No review.
Diffstat (limited to 'test/disabled')
-rw-r--r--test/disabled/run/streamWithFilter.check5
-rw-r--r--test/disabled/run/streamWithFilter.scala11
2 files changed, 16 insertions, 0 deletions
diff --git a/test/disabled/run/streamWithFilter.check b/test/disabled/run/streamWithFilter.check
new file mode 100644
index 0000000000..6b0e91a147
--- /dev/null
+++ b/test/disabled/run/streamWithFilter.check
@@ -0,0 +1,5 @@
+15
+30
+45
+60
+75
diff --git a/test/disabled/run/streamWithFilter.scala b/test/disabled/run/streamWithFilter.scala
new file mode 100644
index 0000000000..cb919d4f55
--- /dev/null
+++ b/test/disabled/run/streamWithFilter.scala
@@ -0,0 +1,11 @@
+object Test {
+ val nums = Stream.from(1)
+ def isFizz(x: Int) = x % 3 == 0
+ def isBuzz(x: Int) = x % 5 == 0
+ // next line will run forever if withFilter isn't doing its thing.
+ val fizzbuzzes = for (n <- nums ; if isFizz(n) ; if isBuzz(n)) yield n
+
+ def main(args: Array[String]): Unit = {
+ fizzbuzzes take 5 foreach println
+ }
+}