From b8988f8eab052d4a529c140c4af8da05d4259a90 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 13 Aug 2012 23:23:34 +0200 Subject: [PATCH] Using -C instead of -r for the ScalaTest reporter --- project/AkkaBuild.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index 22a68ae038..9c34f0f68d 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -415,7 +415,7 @@ object AkkaBuild extends Build { lazy val defaultMultiJvmScalatestOptions: Seq[String] = { val excludeTags = (useExcludeTestTags -- useIncludeTestTags).toSeq - Seq("-r", "org.scalatest.akka.QuietReporter") ++ + Seq("-C", "org.scalatest.akka.QuietReporter") ++ (if (excludeTags.isEmpty) Seq.empty else Seq("-l", if (multiNodeEnabled) excludeTags.mkString("\"", " ", "\"") else excludeTags.mkString(" "))) ++ (if (useOnlyTestTags.isEmpty) Seq.empty else Seq("-n", if (multiNodeEnabled) useOnlyTestTags.mkString("\"", " ", "\"") else useOnlyTestTags.mkString(" "))) }