From 623a1d43155823cc7506c3223405bb68f459fd50 Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Thu, 13 Apr 2017 17:38:34 +0200 Subject: Fix #2220: disable benchmarks, set run timeout to 30 seconds --- tests/disabled/long-running/t4459.scala | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/disabled/long-running/t4459.scala (limited to 'tests/disabled/long-running/t4459.scala') diff --git a/tests/disabled/long-running/t4459.scala b/tests/disabled/long-running/t4459.scala new file mode 100644 index 000000000..ea3b7420b --- /dev/null +++ b/tests/disabled/long-running/t4459.scala @@ -0,0 +1,12 @@ +import collection._ + +object Test { + def main(args: Array[String]): Unit = { + for (i <- 0 until 2000) { + foo((0 until 10000).toSeq.par) + } + } + + def foo(arg: GenSeq[_]): String = arg.map(x => x).mkString(",") +} + -- cgit v1.2.3