From b61a64ddb5700b5d77295df43af0e3feb3c46ac6 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sat, 12 Jan 2013 00:54:44 +0100 Subject: SI-6964 Remove build managers, both simple and refined. Deprecated in 2.10.0, out to pasture in 2.11.0. Users are advised to migrate to: https://github.com/typesafehub/zinc http://www.scala-sbt.org/ --- project/Partest.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'project') diff --git a/project/Partest.scala b/project/Partest.scala index fbb0a2a980..2ea41ba80b 100644 --- a/project/Partest.scala +++ b/project/Partest.scala @@ -33,11 +33,10 @@ object partest { // What's fun here is that we want "*.scala" files *and* directories in the base directory... def partestResources(base: File, testType: String): PathFinder = testType match { case "res" => base ** "*.res" - case "buildmanager" => base * "*" // TODO - Only allow directories that have "*.scala" children... case _ => base * "*" filter { f => !f.getName.endsWith(".obj") && (f.isDirectory || f.getName.endsWith(".scala")) } } - lazy val partestTestTypes = Seq("run", "jvm", "pos", "neg", "buildmanager", "res", "shootout", "scalap", "specialized", "presentation", "scalacheck") + lazy val partestTestTypes = Seq("run", "jvm", "pos", "neg", "res", "shootout", "scalap", "specialized", "presentation", "scalacheck") // TODO - Figure out how to specify only a subset of resources... def partestTestsTask(testDirs: ScopedSetting[Map[String,File]]): Project.Initialize[Task[Map[String, Seq[File]]]] = -- cgit v1.2.3