2005-07-02 16:17:40 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
2006-11-29 02:06:35 -05:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
2005-07-02 16:17:40 -04:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Compiles and runs unit tests against distribution jar(s). Use .antrc or the
|
|
|
|
command line to control the jdk used to execute this build file.
|
|
|
|
|
2016-01-02 12:30:49 -05:00
|
|
|
Assumes that the distribution jar to be tested is in the basedir/lib, along
|
|
|
|
with any dependent jars (junit, hamcrest). Use the "libdir" property to specify
|
|
|
|
the path to the directory containing these jars.
|
2005-07-02 16:17:40 -04:00
|
|
|
|
|
|
|
The default target, "test," executes clean as a dependency.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<project default="test" name="commons-math" basedir=".">
|
2016-01-02 12:30:49 -05:00
|
|
|
<property name="libdir" value="lib"/>
|
2005-07-02 16:17:40 -04:00
|
|
|
<property name="testclassesdir" value="target/test-classes"/>
|
|
|
|
<property name="testreportdir" value="target/test-reports"/>
|
|
|
|
<property name="defaulttargetdir" value="target"/>
|
2016-01-02 12:30:49 -05:00
|
|
|
<property name="test.resources" value="src/test/resources"/>
|
|
|
|
<property name="build.home" value="target"/>
|
|
|
|
<path id="build.classpath">
|
2005-07-02 16:17:40 -04:00
|
|
|
<fileset dir="${libdir}">
|
2016-01-02 12:30:49 -05:00
|
|
|
<include name="*.jar" />
|
2005-07-02 16:17:40 -04:00
|
|
|
</fileset>
|
|
|
|
</path>
|
|
|
|
<target name="clean" description="o Clean up the generated directories">
|
|
|
|
<delete dir="${defaulttargetdir}"/>
|
|
|
|
</target>
|
|
|
|
<target name="init" description="o Initializes some properties">
|
|
|
|
<echo>
|
|
|
|
JAVA ENVIRONMENT
|
|
|
|
**************************Java runtime version*****************************
|
|
|
|
${java.runtime.version}
|
|
|
|
**************************Java class path**********************************
|
|
|
|
${java.class.path}
|
|
|
|
**************************Java home****************************************
|
|
|
|
${java.home}
|
|
|
|
*************************Java library path*******************************
|
|
|
|
Java library path: ${java.library.path}
|
|
|
|
===========================================================================
|
|
|
|
</echo>
|
|
|
|
</target>
|
|
|
|
<target name="test" description="o Run the test cases" if="test.failure" depends="internal-test">
|
|
|
|
<fail message="There were test failures.">
|
|
|
|
</fail>
|
|
|
|
</target>
|
2016-01-02 12:30:49 -05:00
|
|
|
<target name="internal-test" depends="clean,compile-tests">
|
2005-07-02 16:17:40 -04:00
|
|
|
<mkdir dir="${testreportdir}"/>
|
2016-01-02 12:30:49 -05:00
|
|
|
<junit dir="./" failureproperty="test.failure" printSummary="yes"
|
|
|
|
fork="true" haltonerror="true" showOutput="true">
|
2005-07-02 16:17:40 -04:00
|
|
|
<sysproperty key="basedir" value="."/>
|
2016-01-02 12:30:49 -05:00
|
|
|
<formatter type="brief"/>
|
2005-07-02 16:17:40 -04:00
|
|
|
<classpath>
|
|
|
|
<path refid="build.classpath"/>
|
|
|
|
<pathelement path="${testclassesdir}"/>
|
|
|
|
</classpath>
|
|
|
|
<batchtest todir="${testreportdir}">
|
2009-08-01 11:10:11 -04:00
|
|
|
<fileset dir="src/test/java">
|
2005-07-02 16:17:40 -04:00
|
|
|
<include name="**/*Test.java"/>
|
|
|
|
<exclude name="**/*AbstractTest.java"/>
|
|
|
|
</fileset>
|
|
|
|
</batchtest>
|
|
|
|
</junit>
|
|
|
|
</target>
|
2016-01-02 12:30:49 -05:00
|
|
|
<target name="compile-tests" >
|
2005-07-02 16:17:40 -04:00
|
|
|
<mkdir dir="${testclassesdir}"/>
|
|
|
|
<javac destdir="${testclassesdir}" deprecation="true" debug="true"
|
|
|
|
optimize="false" excludes="**/package.html">
|
|
|
|
<src>
|
|
|
|
<pathelement location="src/test"/>
|
|
|
|
</src>
|
|
|
|
<classpath>
|
|
|
|
<path refid="build.classpath"/>
|
|
|
|
</classpath>
|
|
|
|
</javac>
|
2016-01-02 12:30:49 -05:00
|
|
|
<copy todir="${build.home}/test-classes">
|
|
|
|
<fileset dir="${test.resources}">
|
2005-07-02 16:17:40 -04:00
|
|
|
</fileset>
|
2016-01-02 12:30:49 -05:00
|
|
|
</copy>
|
2005-07-02 16:17:40 -04:00
|
|
|
</target>
|
2009-04-19 14:05:48 -04:00
|
|
|
</project>
|
|
|
|
|