summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/pc.scala
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-04-24 15:50:45 -0700
committerPaul Phillips <paulp@improving.org>2013-04-30 08:18:22 -0700
commitbf4466982854ffa8be57068752ea31daf7776eee (patch)
tree46cd3a6276d8fa3df9ccb7d730c29b1cf825edc2 /test/files/scalacheck/parallel-collections/pc.scala
parentb47ca5b17ec8079a23d48103c6af295c2f01caf3 (diff)
downloadscala-bf4466982854ffa8be57068752ea31daf7776eee.tar.gz
scala-bf4466982854ffa8be57068752ea31daf7776eee.tar.bz2
scala-bf4466982854ffa8be57068752ea31daf7776eee.zip
SI-7349 Partest supports test-interface
Partest uses test-interface API to invoke ScalaCheck. This obviates ad hoc output checking for result status. The context class loader is set to a loader that the scaladoc scalacheck tests can use.
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 0a91977da0..e6b6b4856d 100644
--- a/test/files/scalacheck/parallel-collections/pc.scala
+++ b/test/files/scalacheck/parallel-collections/pc.scala
@@ -1,12 +1,11 @@
-
-
-
+/*
+ * scalac: -deprecation
+ * scalacheck: -workers 1 -minSize 0 -maxSize 4000 -minSuccessfulTests 5
+ */
import org.scalacheck._
-
import scala.collection.parallel._
-
class ParCollProperties extends Properties("Parallel collections") {
/* Collections */
@@ -35,8 +34,8 @@ class ParCollProperties extends Properties("Parallel collections") {
include(immutable.IntParallelVectorCheck)
}
-
-object Test {
+object Test extends ParCollProperties {
+ /*
def main(args: Array[String]) {
val pc = new ParCollProperties
org.scalacheck.Test.checkProperties(
@@ -51,4 +50,5 @@ object Test {
pc
)
}
+ */
}