From 8ced5e85f8718474e975d0a19327364a32cedb93 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 12 Apr 2010 03:30:26 +0000 Subject: Disabled the test which is hanging the -optimis... Disabled the test which is hanging the -optimise run. No review. --- test/files/run/streamWithFilter.check | 5 ----- test/files/run/streamWithFilter.scala | 11 ----------- 2 files changed, 16 deletions(-) delete mode 100644 test/files/run/streamWithFilter.check delete mode 100644 test/files/run/streamWithFilter.scala (limited to 'test/files') diff --git a/test/files/run/streamWithFilter.check b/test/files/run/streamWithFilter.check deleted file mode 100644 index 6b0e91a147..0000000000 --- a/test/files/run/streamWithFilter.check +++ /dev/null @@ -1,5 +0,0 @@ -15 -30 -45 -60 -75 diff --git a/test/files/run/streamWithFilter.scala b/test/files/run/streamWithFilter.scala deleted file mode 100644 index cb919d4f55..0000000000 --- a/test/files/run/streamWithFilter.scala +++ /dev/null @@ -1,11 +0,0 @@ -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 - } -} -- cgit v1.2.3