You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2008/03/26 11:32:38 UTC

svn commit: r641238 - /spamassassin/trunk/build/hudson/run_build

Author: jm
Date: Wed Mar 26 03:32:36 2008
New Revision: 641238

URL: http://svn.apache.org/viewvc?rev=641238&view=rev
Log:
oops.  output goes to stdout, not to file

Modified:
    spamassassin/trunk/build/hudson/run_build

Modified: spamassassin/trunk/build/hudson/run_build
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/hudson/run_build?rev=641238&r1=641237&r2=641238&view=diff
==============================================================================
--- spamassassin/trunk/build/hudson/run_build (original)
+++ spamassassin/trunk/build/hudson/run_build Wed Mar 26 03:32:36 2008
@@ -39,9 +39,9 @@
 
 # generate XML test reports (single file)
 perl ./build/hudson/tap-to-junit-xml \
-    "make test" < artifacts/make_test.log
+    "make test" < artifacts/make_test.log > testxml/make_test.xml
 perl ./build/hudson/tap-to-junit-xml \
-    "make disttest" < artifacts/make_disttest.log
+    "make disttest" < artifacts/make_disttest.log > testxml/make_disttest.xml
 perl ./build/hudson/tap-to-junit-xml \
-    "make test p561" < artifacts/make_test_p561.log
+    "make test p561" < artifacts/make_test_p561.log > testxml/make_test_p561.xml