From da60dda202f386ed85fa15bf8fe02252d4dfb911 Mon Sep 17 00:00:00 2001 From: Som Snytt Date: Fri, 5 Sep 2014 00:24:27 -0700 Subject: SI-8835 Iterator tests can be junit Without loss of generality or convenience, but helps reduce the number of files in test/files and may reduce compile times for test suite. This commit includes the fix from #3963 and an extra test of that fix that ensures the stack doesn't grow on chained drops. --- test/files/run/iterator-concat.scala | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test/files/run/iterator-concat.scala (limited to 'test/files/run/iterator-concat.scala') diff --git a/test/files/run/iterator-concat.scala b/test/files/run/iterator-concat.scala deleted file mode 100644 index f11363410f..0000000000 --- a/test/files/run/iterator-concat.scala +++ /dev/null @@ -1,15 +0,0 @@ -object Test { - // Create `size` Function0s, each of which evaluates to an Iterator - // which produces 1. Then fold them over ++ to get a single iterator, - // which should sum to "size". - def mk(size: Int): Iterator[Int] = { - val closures = (1 to size).toList.map(x => (() => Iterator(1))) - closures.foldLeft(Iterator.empty: Iterator[Int])((res, f) => res ++ f()) - } - def main(args: Array[String]): Unit = { - println(mk(100).sum) - println(mk(1000).sum) - println(mk(10000).sum) - println(mk(100000).sum) - } -} -- cgit v1.2.3