summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-29 20:44:33 +0000
committerPaul Phillips <paulp@improving.org>2011-03-29 20:44:33 +0000
commit1b14bfcb7f264f044d04362bcacd0f96b91abdba (patch)
tree2a1214017805eeb532ca83617864617eafd726d8
parentb34ef21d7104a0878976c3027a910654e7e853ed (diff)
downloadscala-1b14bfcb7f264f044d04362bcacd0f96b91abdba.tar.gz
scala-1b14bfcb7f264f044d04362bcacd0f96b91abdba.tar.bz2
scala-1b14bfcb7f264f044d04362bcacd0f96b91abdba.zip
A change to a test to defend against output cha...
A change to a test to defend against output change when run with a plugin enabled. No review.
-rw-r--r--test/files/run/programmatic-main.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/programmatic-main.scala b/test/files/run/programmatic-main.scala
index 3a88252fd3..7fec0f3f98 100644
--- a/test/files/run/programmatic-main.scala
+++ b/test/files/run/programmatic-main.scala
@@ -8,7 +8,7 @@ object Test {
def main(args: Array[String]): Unit = {
Console.withErr(Console.out) {
- Main process (baseargs ++ Array("-Xshow-phases"))
+ Main process (baseargs ++ "-Xpluginsdir /does/not/exist/foo/quux -Xshow-phases".split(' '))
}
}
}