summaryrefslogtreecommitdiff
path: root/test/partest-tests/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/partest-tests/run')
-rw-r--r--test/partest-tests/run/crash.scala6
-rw-r--r--test/partest-tests/run/streamWithFilter.check5
-rw-r--r--test/partest-tests/run/streamWithFilter.scala11
-rw-r--r--test/partest-tests/run/timeout.scala5
4 files changed, 0 insertions, 27 deletions
diff --git a/test/partest-tests/run/crash.scala b/test/partest-tests/run/crash.scala
deleted file mode 100644
index 1735cc444e..0000000000
--- a/test/partest-tests/run/crash.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-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
deleted file mode 100644
index 6b0e91a147..0000000000
--- a/test/partest-tests/run/streamWithFilter.check
+++ /dev/null
@@ -1,5 +0,0 @@
-15
-30
-45
-60
-75
diff --git a/test/partest-tests/run/streamWithFilter.scala b/test/partest-tests/run/streamWithFilter.scala
deleted file mode 100644
index cb919d4f55..0000000000
--- a/test/partest-tests/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
- }
-}
diff --git a/test/partest-tests/run/timeout.scala b/test/partest-tests/run/timeout.scala
deleted file mode 100644
index 91417b39ab..0000000000
--- a/test/partest-tests/run/timeout.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-object Test {
- def main(args: Array[String]): Unit = {
- Thread.sleep(10000000)
- }
-}