summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/pc.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-27 22:13:27 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-27 22:13:27 +0000
commit49d47cb3723c9d3160e3f215808b571a05d1b252 (patch)
tree631787bc9e2f67613402eff45207a3fbd098fd12 /test/files/scalacheck/parallel-collections/pc.scala
parent14e47d131b1d395a3c636bef815706dd60171011 (diff)
downloadscala-49d47cb3723c9d3160e3f215808b571a05d1b252.tar.gz
scala-49d47cb3723c9d3160e3f215808b571a05d1b252.tar.bz2
scala-49d47cb3723c9d3160e3f215808b571a05d1b252.zip
Refactored parallel collections for pluggable t...
Refactored parallel collections for pluggable task support implementations. No review.
Diffstat (limited to 'test/files/scalacheck/parallel-collections/pc.scala')
-rw-r--r--test/files/scalacheck/parallel-collections/pc.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/files/scalacheck/parallel-collections/pc.scala b/test/files/scalacheck/parallel-collections/pc.scala
index 33d5a28322..efc393889e 100644
--- a/test/files/scalacheck/parallel-collections/pc.scala
+++ b/test/files/scalacheck/parallel-collections/pc.scala
@@ -11,22 +11,22 @@ class ParCollProperties extends Properties("Parallel collections") {
/* Collections */
// parallel arrays
- // include(mutable.IntParallelArrayCheck)
+ //include(mutable.IntParallelArrayCheck)
// parallel ranges
- // include(immutable.ParallelRangeCheck)
+ //include(immutable.ParallelRangeCheck)
// parallel immutable hash maps (tries)
- // include(immutable.IntIntParallelHashMapCheck)
+ //include(immutable.IntIntParallelHashMapCheck)
// parallel immutable hash sets (tries)
- // include(immutable.IntParallelHashSetCheck)
+ //include(immutable.IntParallelHashSetCheck)
// parallel mutable hash maps (tables)
- // include(mutable.IntIntParallelHashMapCheck)
+ //include(mutable.IntIntParallelHashMapCheck)
// parallel mutable hash sets (tables)
- // include(mutable.IntParallelHashSetCheck)
+ //include(mutable.IntParallelHashSetCheck)
// parallel vectors
@@ -52,7 +52,7 @@ object Test {
workers = 1,
minSize = 0,
maxSize = 4000,
- minSuccessfulTests = 250
+ minSuccessfulTests = 150
),
pc
)