Enabling showOutput in the ant junit task so we can see our own errors and messages during the build process.

Patch by: jlabanca
Review by: rjrjr (TBR)



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5907 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/common.ant.xml b/common.ant.xml
index a2451e0..db7a411 100755
--- a/common.ant.xml
+++ b/common.ant.xml
@@ -199,7 +199,8 @@
 
       <echo message="${javac.out} ${javac.junit.out}" />
       <junit dir="@{test.out}" fork="yes" printsummary="yes"
-             failureproperty="junit.failure" tempdir="@{test.out}" >
+             failureproperty="junit.failure" tempdir="@{test.out}"
+             showoutput="yes">
         <jvmarg line="${junit.platform.args}" />
         <jvmarg line="-Xmx768m" />
         <jvmarg value="-Demma.coverage.out.file=@{test.emma.coverage}/coverage.emma" />