From d84573c9d3f3ff2e6bb5d8ab8db9f7d75ae7a29e Mon Sep 17 00:00:00 2001 From: Martin Duhem Date: Wed, 19 Aug 2015 09:11:02 +0200 Subject: [PATCH] Include pending scripted tests in * and *aofb --- project/Scripted.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/Scripted.scala b/project/Scripted.scala index 6202e3992..163b3223c 100644 --- a/project/Scripted.scala +++ b/project/Scripted.scala @@ -19,10 +19,11 @@ object Scripted { case class ScriptedTestPage(page: Int, total: Int) def scriptedParser(scriptedBase: File): Parser[Seq[String]] = { - val pairs = (scriptedBase * AllPassFilter * AllPassFilter * "test").get map { (f: File) => + val scriptedFiles: NameFilter = ("test": NameFilter) | "pending" + val pairs = (scriptedBase * AllPassFilter * AllPassFilter * scriptedFiles).get map { (f: File) => val p = f.getParentFile (p.getParentFile.getName, p.getName) - }; + } val pairMap = pairs.groupBy(_._1).mapValues(_.map(_._2).toSet); val id = charClass(c => !c.isWhitespace && c != '/').+.string