view build.xml @ 42:ecea5b48a830

fix test
author Pavel.Sher
date Mon, 11 Aug 2008 13:00:41 +0400
parents 37d0e6ff7a13
children d4b7dcc8d66e
line wrap: on
line source
<project name="Mercurial VCS Support" default="dist" basedir=".">
  <property file="mercurial.properties"/>
  <import file="mercurial.xml"/>

  <property name="distPath" value="${basedir}/dist"/>

  <target name="dist" depends="all">
    <delete dir="${distPath}"/>
    <mkdir dir="${distPath}/unpacked"/>
    <jar destfile="${distPath}/unpacked/mercurial-common.jar" basedir="${mercurial-common.output.dir}"/>
    <jar destfile="${distPath}/unpacked/mercurial.jar" basedir="${mercurial-server.output.dir}"/>
    <jar destfile="${distPath}/unpacked/mercurial-agent.jar" basedir="${mercurial-agent.output.dir}"/>
    <zip basedir="${distPath}/unpacked" destfile="${distPath}/mercurial.zip">
      <include name="mercurial-common.jar"/>
      <include name="mercurial.jar"/>
    </zip>
    <zip destfile="${distPath}/mercurial-agent.zip">
      <zipfileset dir="${distPath}/unpacked" prefix="mercurial/lib">
        <include name="mercurial-agent.jar"/>
        <include name="mercurial-common.jar"/>
      </zipfileset>
    </zip>
    <zip basedir="${basedir}" destfile="${distPath}/mercurial-src.zip">
      <exclude name=".hg/**"/>
      <exclude name="dist/**"/>
      <exclude name="**/classes/**"/>
      <exclude name="*.iws"/>
      <exclude name="test-output/**"/>
    </zip>
  </target>

  <taskdef name="testng" classname="org.testng.TestNGAntTask" classpath="${basedir}/mercurial-tests/lib/testng-5.7-jdk15.jar"/>

  <target name="run-tests" depends="clean, init, compile.module.mercurial-tests.production">

    <testng haltonfailure="no" failureProperty="failure_found" listener="org.testng.reporters.TestHTMLReporter"
            outputdir="${basedir}/test-output" classpathref="mercurial-tests.runtime.module.classpath" dumpcommand="true">

      <jvmarg value="-ea"/>

      <sysproperty key="java.awt.headless" value="true"/>

      <xmlfileset dir="${basedir}/mercurial-tests/src">
        <include name="testng.xml"/>
      </xmlfileset>
    </testng>
  </target>
</project>