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 2014/10/30 16:34:40 UTC

svn commit: r1635522 - /manifoldcf/branches/dev_1x/connectors/cmis/build.xml

Author: kwright
Date: Thu Oct 30 15:34:40 2014
New Revision: 1635522

URL: http://svn.apache.org/r1635522
Log:
Fix CMIS test

Modified:
    manifoldcf/branches/dev_1x/connectors/cmis/build.xml

Modified: manifoldcf/branches/dev_1x/connectors/cmis/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/dev_1x/connectors/cmis/build.xml?rev=1635522&r1=1635521&r2=1635522&view=diff
==============================================================================
--- manifoldcf/branches/dev_1x/connectors/cmis/build.xml (original)
+++ manifoldcf/branches/dev_1x/connectors/cmis/build.xml Thu Oct 30 15:34:40 2014
@@ -98,9 +98,9 @@
         </antcall>
     </target>
 
-    <target name="run-IT-HSQLDB" depends="compile-tests,pretest-check" if="canTest">
-        <mkdir dir="test-HSQLDB-output"/>
-        <junit fork="true" maxmemory="256m" dir="test-HSQLDB-output" outputtoformatters="true" showoutput="true" haltonfailure="true">
+    <target name="run-IT-derby" depends="compile-tests,pretest-check" if="canTest">
+        <mkdir dir="test-derby-output"/>
+        <junit fork="true" maxmemory="256m" dir="test-derby-output" outputtoformatters="true" showoutput="true" haltonfailure="true">
             <jvmarg value="-DcrawlerWarPath=${mcf-dist}/web/war/mcf-crawler-ui.war"/>
             <jvmarg value="-DauthorityserviceWarPath=${mcf-dist}/web/war/mcf-authority-service.war"/>
             <jvmarg value="-DapiWarPath=${mcf-dist}/web/war/mcf-api-service.war"/>
@@ -116,9 +116,9 @@
                 <pathelement location="build/connector-tests/classes"/>
             </classpath>
             <formatter type="brief" usefile="false"/>
-            <batchtest todir="test-HSQLDB-output">
+            <batchtest todir="test-derby-output">
                 <fileset dir="build/connector-tests/classes">
-                    <include name="**/*HSQLDBIT.class"/>
+                    <include name="**/*DerbyIT.class"/>
                 </fileset>
             </batchtest>
         </junit>