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 10:51:36 UTC

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

Author: jm
Date: Wed Mar 26 02:51:35 2008
New Revision: 641229

URL: http://svn.apache.org/viewvc?rev=641229&view=rev
Log:
hmm, some wierdness in the JUnit-style test reports.  try single-file mode to see if it works better

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=641229&r1=641228&r2=641229&view=diff
==============================================================================
--- spamassassin/trunk/build/hudson/run_build (original)
+++ spamassassin/trunk/build/hudson/run_build Wed Mar 26 02:51:35 2008
@@ -29,11 +29,19 @@
     2>&1 | tee artifacts/make_test_p561.log
 mv t/log artifacts/t.log.make_test_p561
 
-# generate XML test reports
+# generate XML test reports (multifile)
+# perl ./build/hudson/tap-to-junit-xml \
+    # "make test" testxml/make_test < artifacts/make_test.log
+# perl ./build/hudson/tap-to-junit-xml \
+    # "make disttest" testxml/make_disttest < artifacts/make_disttest.log
+# perl ./build/hudson/tap-to-junit-xml \
+    # "make test p561" testxml/make_test_p561 < artifacts/make_test_p561.log
+
+# generate XML test reports (single file)
 perl ./build/hudson/tap-to-junit-xml \
-    "make test" testxml/make_test < artifacts/make_test.log
+    "make test" < artifacts/make_test.log
 perl ./build/hudson/tap-to-junit-xml \
-    "make disttest" testxml/make_disttest < artifacts/make_disttest.log
+    "make disttest" < artifacts/make_disttest.log
 perl ./build/hudson/tap-to-junit-xml \
-    "make test p561" testxml/make_test_p561 < artifacts/make_test_p561.log
+    "make test p561" < artifacts/make_test_p561.log