From 7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 12 Apr 2010 21:36:33 +0000 Subject: Still working on partest. temporary if considered clutter. ant test.partest ant test.partest-opt They run some recently troublesome partest tests with a low timeout. Logged some more exceptions where the compiler has been dying. Review by phaller. --- test/partest-tests/run/crash.scala | 6 ++++++ test/partest-tests/run/streamWithFilter.check | 5 +++++ test/partest-tests/run/streamWithFilter.scala | 11 +++++++++++ test/partest-tests/run/timeout.scala | 5 +++++ 4 files changed, 27 insertions(+) create mode 100644 test/partest-tests/run/crash.scala create mode 100644 test/partest-tests/run/streamWithFilter.check create mode 100644 test/partest-tests/run/streamWithFilter.scala create mode 100644 test/partest-tests/run/timeout.scala (limited to 'test/partest-tests/run') diff --git a/test/partest-tests/run/crash.scala b/test/partest-tests/run/crash.scala new file mode 100644 index 0000000000..1735cc444e --- /dev/null +++ b/test/partest-tests/run/crash.scala @@ -0,0 +1,6 @@ +object Test { + def main(args: Array[String]): Unit = { + val t = new Throwable("DOOM") + throw t + } +} diff --git a/test/partest-tests/run/streamWithFilter.check b/test/partest-tests/run/streamWithFilter.check new file mode 100644 index 0000000000..6b0e91a147 --- /dev/null +++ b/test/partest-tests/run/streamWithFilter.check @@ -0,0 +1,5 @@ +15 +30 +45 +60 +75 diff --git a/test/partest-tests/run/streamWithFilter.scala b/test/partest-tests/run/streamWithFilter.scala new file mode 100644 index 0000000000..cb919d4f55 --- /dev/null +++ b/test/partest-tests/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 + } +} diff --git a/test/partest-tests/run/timeout.scala b/test/partest-tests/run/timeout.scala new file mode 100644 index 0000000000..91417b39ab --- /dev/null +++ b/test/partest-tests/run/timeout.scala @@ -0,0 +1,5 @@ +object Test { + def main(args: Array[String]): Unit = { + Thread.sleep(10000000) + } +} -- cgit v1.2.3