summaryrefslogtreecommitdiff
path: root/test/disabled/parallel-collections/pc.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/parallel-collections/pc.scala')
-rw-r--r--test/disabled/parallel-collections/pc.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/disabled/parallel-collections/pc.scala b/test/disabled/parallel-collections/pc.scala
new file mode 100644
index 0000000000..d369faf804
--- /dev/null
+++ b/test/disabled/parallel-collections/pc.scala
@@ -0,0 +1,20 @@
+
+
+
+
+import org.scalacheck._
+import scala.collection.parallel._
+
+
+object ParCollProperties extends Properties("Parallel collections") {
+ include(mutable.IntParallelArrayCheck)
+ include(immutable.ParallelRangeCheck)
+}
+
+
+object Test {
+ def main(args: Array[String]) {
+ val results = org.scalacheck.Test.checkProperties(ParCollProperties)
+ if (!results.forall(_._2.passed)) println(results)
+ }
+}