Update test results
This commit is contained in:
parent
18141d065e
commit
6a9b0cef37
2 changed files with 5 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
||||||
<property name="unit.absolute.dir" location="${unit.dir}" />
|
<property name="unit.absolute.dir" location="${unit.dir}" />
|
||||||
<property name="test.lib.dir" value="test/libs" />
|
<property name="test.lib.dir" value="test/libs" />
|
||||||
<property name="test.lib.absolute.dir" location="${test.lib.dir}" />
|
<property name="test.lib.absolute.dir" location="${test.lib.dir}" />
|
||||||
<property name="reports.tests" value="${basedir}/test-results" />
|
<property name="reports.tests" value="test-results" />
|
||||||
<property name="srctests.dir" value="test/java"/>
|
<property name="srctests.dir" value="test/java"/>
|
||||||
<property name="java.encoding" value="UTF-8" />
|
<property name="java.encoding" value="UTF-8" />
|
||||||
|
|
||||||
|
@ -60,15 +60,16 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="junits" >
|
<target name="junits" >
|
||||||
<junit printsummary="yes" haltonfailure="no" showoutput="yes">
|
<junit printsummary="yes" showoutput="yes">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement path="bin"/>
|
<pathelement path="bin"/>
|
||||||
<path refid="build.path"/>
|
<path refid="build.path"/>
|
||||||
<path refid="test-lib.path" />
|
<path refid="test-lib.path" />
|
||||||
</classpath>
|
</classpath>
|
||||||
|
<formatter type="xml" />
|
||||||
<batchtest fork="false" todir="${reports.tests}" >
|
<batchtest fork="false" todir="${reports.tests}" >
|
||||||
<fileset dir="${srctests.dir}" >
|
<fileset dir="${srctests.dir}" >
|
||||||
<include name="**/*Test*.java" />
|
<include name="**/*Test.java" />
|
||||||
<exclude name="**/AllTests.java" />
|
<exclude name="**/AllTests.java" />
|
||||||
<exclude name="**/*Suite*.java" />
|
<exclude name="**/*Suite*.java" />
|
||||||
</fileset>
|
</fileset>
|
||||||
|
|
1
OsmAnd-java/test-results/.gitignore
vendored
Normal file
1
OsmAnd-java/test-results/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.xml
|
Loading…
Reference in a new issue