summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 01:38:45 -0700
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 14:09:40 -0700
commite96962d8b08239ef2e1017e50855337d9bf6ed56 (patch)
tree749a472480ea5cb088d267dd4add990fa3ae15de /build.xml
parentf3ed70c751f7fadff875b2ea3a5cb77e17eb19d3 (diff)
downloadscala-e96962d8b08239ef2e1017e50855337d9bf6ed56.tar.gz
scala-e96962d8b08239ef2e1017e50855337d9bf6ed56.tar.bz2
scala-e96962d8b08239ef2e1017e50855337d9bf6ed56.zip
Make junit runner quiet when tests pass.
Do not show output printed to standard output by default. When a test fails it will be recorded in a report but when it passes we don't need any debugging logging to be printed.
Diffstat (limited to 'build.xml')
-rwxr-xr-xbuild.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 7c68f2d57b..b36a04d9ef 100755
--- a/build.xml
+++ b/build.xml
@@ -1538,7 +1538,7 @@ TODO:
<target name="test.junit" depends="test.junit.comp">
<stopwatch name="test.junit.timer"/>
<mkdir dir="${test.junit.classes}"/>
- <junit fork="yes" haltonfailure="yes" showoutput="yes" printsummary="on">
+ <junit fork="yes" haltonfailure="yes" printsummary="on">
<classpath refid="test.junit.compiler.build.path"/>
<batchtest fork="yes" todir="${build-junit.dir}">
<fileset dir="${test.junit.classes}">