summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/pc.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-28 12:09:49 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-28 12:09:49 +0000
commitf388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7 (patch)
tree2a5770c3ca5f08410dd197035e3bae7a0b52ba23 /test/files/scalacheck/parallel-collections/pc.scala
parent4ddb4ce1e28afe15f9335a4bd51e07f68161b27c (diff)
downloadscala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.tar.gz
scala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.tar.bz2
scala-f388aaaf52dab4ceaf8e5f26c72eb4a0d1d3b3e7.zip
Mostly refactored existing test functionality f...
Mostly refactored existing test functionality for parallel collections. Added immutable hash set tests. No review.
Diffstat (limited to 'test/files/scalacheck/parallel-collections/pc.scala')
-rw-r--r--test/files/scalacheck/parallel-collections/pc.scala10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/files/scalacheck/parallel-collections/pc.scala b/test/files/scalacheck/parallel-collections/pc.scala
index 3e7ac8c33e..fe406a9408 100644
--- a/test/files/scalacheck/parallel-collections/pc.scala
+++ b/test/files/scalacheck/parallel-collections/pc.scala
@@ -17,12 +17,13 @@ class ParCollProperties extends Properties("Parallel collections") {
//include(immutable.ParallelRangeCheck)
// parallel immutable hash maps (tries)
- include(immutable.IntIntParallelHashMapCheck)
+ //include(immutable.IntIntParallelHashMapCheck)
// parallel immutable hash sets (tries)
+ //include(immutable.IntParallelHashSetCheck)
// parallel mutable hash maps (tables)
-
+ include(mutable.IntIntParallelHashMapCheck)
/* Views */
@@ -41,7 +42,10 @@ object Test {
org.scalacheck.Test.Params(
rng = new java.util.Random(5134L),
testCallback = new ConsoleReporter(0),
- workers = 1
+ workers = 1,
+ minSize = 0,
+ maxSize = 250,
+ minSuccessfulTests = 250
),
pc
)