Author: vgritsenko Date: Wed Feb 28 17:54:43 2007 New Revision: 513102 URL: http://svn.apache.org/viewvc?view=rev&rev=513102 Log: add uncompressed db integration test
Modified: xml/xindice/trunk/build.xml Modified: xml/xindice/trunk/build.xml URL: http://svn.apache.org/viewvc/xml/xindice/trunk/build.xml?view=diff&rev=513102&r1=513101&r2=513102 ============================================================================== --- xml/xindice/trunk/build.xml (original) +++ xml/xindice/trunk/build.xml Wed Feb 28 17:54:43 2007 @@ -230,6 +230,27 @@ </junit> </target> + <target name="test-integration-uncompressed" depends="test-build, test-validate"> + <junit fork="yes" printsummary="yes" haltonfailure="no"> + <jvmarg value="-Djava.endorsed.dirs=${basedir}/build/endorsed"/> + <jvmarg value="-Dxindice.home=${basedir}"/> + <jvmarg value="-Dxindice.db.home=${basedir}/build/test-uncompressed"/> + <jvmarg value="-Dxindice.configuration=${basedir}/config/system.xml"/> + <jvmarg value="-Dorg.apache.commons.logging.Log=${test.logger}"/> + <jvmarg value="-Dorg.apache.commons.logging.simplelog.defaultlog=${test.loglevel}"/> + + <formatter type="plain" usefile="no"/> + <formatter type="xml"/> + + <test name="org.apache.xindice.IntegrationUncompressedTests" + outfile="${test.result.dir}/org.apache.xindice.IntegrationUncompressedTests"/> + <classpath> + <path refid="project.class.path"/> + <pathelement location="${test.build.dir}"/> + </classpath> + </junit> + </target> + <target name="test-integration-xmlrpc" depends="test-build, test-validate"> <echo message="XML-RPC driver='${test.xmlrpc.driver}'"/> <echo message="XML-RPC host/port='${test.xmlrpc.hostport}'"/> @@ -257,7 +278,7 @@ </target> <target name="test-all" - depends="test-unit, test-integration-embed, test-integration-xmlrpc"> + depends="test-unit, test-integration-embed, test-integration-uncompressed, test-integration-xmlrpc"> </target> <target name="test-report" depends="init">