summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-09-14 14:15:15 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-09-14 14:15:15 +0000
commit45b659cd413a1411c90cd27261d8260229f93898 (patch)
tree25608c8959b613b033a2b09c923ca6e5f4e8dc0f /src/partest
parentad55804547c79d75e981f260cdb40dfba2ae8bfc (diff)
downloadscala-45b659cd413a1411c90cd27261d8260229f93898.tar.gz
scala-45b659cd413a1411c90cd27261d8260229f93898.tar.bz2
scala-45b659cd413a1411c90cd27261d8260229f93898.zip
Enabled partest to run entire directories for s...
Enabled partest to run entire directories for scalacheck test group. Review by extempore.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/nest/ConsoleRunner.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/nest/ConsoleRunner.scala b/src/partest/scala/tools/partest/nest/ConsoleRunner.scala
index 33f575c0a0..0890d12aeb 100644
--- a/src/partest/scala/tools/partest/nest/ConsoleRunner.scala
+++ b/src/partest/scala/tools/partest/nest/ConsoleRunner.scala
@@ -34,7 +34,7 @@ class ConsoleRunner extends DirectRunner {
TestSet("buildmanager", _.isDirectory, "Testing Build Manager"),
TestSet("shootout", pathFilter, "Testing shootout tests"),
TestSet("script", pathFilter, "Testing script tests"),
- TestSet("scalacheck", pathFilter, "Testing ScalaCheck tests"),
+ TestSet("scalacheck", x => pathFilter(x) || x.isDirectory, "Testing ScalaCheck tests"),
TestSet("scalap", _.isDirectory, "Run scalap decompiler tests")
)
}