You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/09/16 12:15:08 UTC

svn commit: r1171488 - in /incubator/lcf/trunk/connectors: filesystem/build.xml rss/build.xml webcrawler/build.xml

Author: kwright
Date: Fri Sep 16 10:15:08 2011
New Revision: 1171488

URL: http://svn.apache.org/viewvc?rev=1171488&view=rev
Log:
Improve test output for all connector tests

Modified:
    incubator/lcf/trunk/connectors/filesystem/build.xml
    incubator/lcf/trunk/connectors/rss/build.xml
    incubator/lcf/trunk/connectors/webcrawler/build.xml

Modified: incubator/lcf/trunk/connectors/filesystem/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/filesystem/build.xml?rev=1171488&r1=1171487&r2=1171488&view=diff
==============================================================================
--- incubator/lcf/trunk/connectors/filesystem/build.xml (original)
+++ incubator/lcf/trunk/connectors/filesystem/build.xml Fri Sep 16 10:15:08 2011
@@ -79,7 +79,7 @@
 
     <target name="run-tests-derby" depends="compile-tests">
         <mkdir dir="test-output"/>
-        <junit fork="true" maxmemory="128m" dir="test-output" showoutput="true" haltonfailure="true">
+        <junit fork="true" maxmemory="128m" dir="test-output" outputtoformatters="true" showoutput="true" haltonfailure="true">
             <classpath>
                 <fileset dir="lib">
                     <include name="*.jar"/>
@@ -87,6 +87,8 @@
                 <pathelement location="build/connector/classes"/>
                 <pathelement location="build/connector-tests/classes"/>
             </classpath>
+            <formatter type="brief" usefile="false"/>
+
             <test name="org.apache.manifoldcf.crawler.connectors.filesystem.tests.SanityTest" todir="test-output"/>
             <!-- MHL -->
         </junit>

Modified: incubator/lcf/trunk/connectors/rss/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/rss/build.xml?rev=1171488&r1=1171487&r2=1171488&view=diff
==============================================================================
--- incubator/lcf/trunk/connectors/rss/build.xml (original)
+++ incubator/lcf/trunk/connectors/rss/build.xml Fri Sep 16 10:15:08 2011
@@ -74,7 +74,7 @@
     
     <target name="run-tests" depends="compile-tests">
         <mkdir dir="test-output"/>
-        <junit fork="true" maxmemory="128m" dir="test-output" showoutput="true" haltonfailure="true">
+        <junit fork="true" maxmemory="128m" dir="test-output" outputtoformatters="true" showoutput="true" haltonfailure="true">
             <classpath>
                 <fileset dir="lib">
                     <include name="*.jar"/>
@@ -82,6 +82,8 @@
                 <pathelement location="build/connector/classes"/>
                 <pathelement location="build/connector-tests/classes"/>
             </classpath>
+            <formatter type="brief" usefile="false"/>
+
             <test name="org.apache.manifoldcf.crawler.connectors.rss.tests.URLTest" todir="test-output"/>
             <!-- MHL -->
         </junit>

Modified: incubator/lcf/trunk/connectors/webcrawler/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/webcrawler/build.xml?rev=1171488&r1=1171487&r2=1171488&view=diff
==============================================================================
--- incubator/lcf/trunk/connectors/webcrawler/build.xml (original)
+++ incubator/lcf/trunk/connectors/webcrawler/build.xml Fri Sep 16 10:15:08 2011
@@ -74,7 +74,7 @@
     
     <target name="run-tests" depends="compile-tests">
         <mkdir dir="test-output"/>
-        <junit fork="true" maxmemory="128m" dir="test-output" showoutput="true" haltonfailure="true">
+        <junit fork="true" maxmemory="128m" dir="test-output" outputtoformatters="true" showoutput="true" haltonfailure="true">
             <classpath>
                 <fileset dir="lib">
                     <include name="*.jar"/>
@@ -82,6 +82,8 @@
                 <pathelement location="build/connector/classes"/>
                 <pathelement location="build/connector-tests/classes"/>
             </classpath>
+            <formatter type="brief" usefile="false"/>
+
             <test name="org.apache.manifoldcf.crawler.connectors.webcrawler.tests.URLTest" todir="test-output"/>
             <!-- MHL -->
         </junit>