Blame view

3rdparty/opencv-4.5.4/modules/java/test/pure_test/build.xml 2.42 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  <project name="OpenCV-Test">
    <property environment="env"/>
    <property file="ant-${opencv.build.type}.properties"/>
    <property name="test.dir" value="testResults"/>
    <property name="build.dir" value="build"/>
  
    <property name="opencv.test.package" value="*"/>
    <property name="opencv.test.class" value="*"/>
    <property name="opencv.test.exclude" value=""/>
  
    <path id="master-classpath">
      <fileset dir="lib">
        <include name="*.jar"/>
      </fileset>
      <fileset dir="bin">
        <include name="*.jar"/>
      </fileset>
    </path>
  
    <target name="clean">
      <delete dir="build"/>
      <delete dir="${test.dir}"/>
    </target>
  
    <target name="compile">
      <mkdir dir="build/classes"/>
  
      <javac sourcepath="" srcdir="src" destdir="build/classes" debug="on" includeantruntime="false" >
        <include name="**/*.java"/>
        <classpath refid="master-classpath"/>
      </javac>
    </target>
  
    <target name="jar" depends="compile">
      <mkdir dir="build/jar"/>
      <jar destfile="build/jar/opencv-test.jar" basedir="build/classes">
        <manifest>
          <attribute name="Main-Class" value="org.opencv.test.OpenCVTestRunner"/>
        </manifest>
      </jar>
    </target>
  
    <target name="test" depends="jar">
      <mkdir dir="${test.dir}"/>
      <junit printsummary="withOutAndErr" haltonfailure="false" haltonerror="false" showoutput="true" logfailedtests="true" maxmemory="256m">
        <sysproperty key="java.library.path" path="${opencv.lib.path}"/>
        <env key="PATH" path="${opencv.lib.path}:${env.PATH}:${env.Path}"/>
        <env key="DYLD_LIBRARY_PATH" path="${env.OPENCV_SAVED_DYLD_LIBRARY_PATH}"/>  <!-- https://github.com/opencv/opencv/issues/14353 -->
        <classpath refid="master-classpath"/>
        <classpath>
          <pathelement location="build/classes"/>
        </classpath>
  
        <formatter type="xml"/>
  
        <batchtest fork="yes" todir="${test.dir}">
          <zipfileset src="build/jar/opencv-test.jar" includes="**/${opencv.test.package}/${opencv.test.class}.class" excludes="**/OpenCVTest*, ${opencv.test.exclude}">
            <exclude name="**/*$*.class"/>
          </zipfileset>
        </batchtest>
      </junit>
      <junitreport todir="${test.dir}">
        <fileset dir="${test.dir}">
          <include name="TEST-*.xml"/>
        </fileset>
        <report format="noframes" todir="${test.dir}"/>
      </junitreport>
    </target>
  
    <target name="build" depends="jar">
    </target>
  
    <target name="buildAndTest" depends="test">
    </target>
  </project>