Changeset 12534 in josm


Ignore:
Timestamp:
2017-07-29T22:44:29+02:00 (7 years ago)
Author:
Don-vip
Message:

new ant target for performance tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r12501 r12534  
    487487    </macrodef>
    488488    <target name="test" depends="test-compile" unless="test.notRequired"
    489         description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
     489        description="Run unit and functional tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
    490490        <call-junit testfamily="unit"/>
    491491        <call-junit testfamily="functional"/>
    492         <call-junit testfamily="performance" coverage="false"/>
    493492    </target>
    494493    <target name="test-it" depends="test-compile" unless="test-it.notRequired"
     
    496495        <call-junit testfamily="unit" testITsuffix="IT"/>
    497496        <call-junit testfamily="functional" testITsuffix="IT"/>
    498         <call-junit testfamily="performance" testITsuffix="IT" coverage="false"/>
    499     </target>
    500     <target name="test-html" depends="test, test-it" description="Generate HTML test reports">
     497    </target>
     498    <target name="test-perf" depends="test-compile" unless="test-perf.notRequired"
     499        description="Run performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
     500        <call-junit testfamily="performance" coverage="false"/>
     501    </target>
     502    <target name="test-html" depends="test, test-it, test-perf" description="Generate HTML test reports">
    501503        <!-- May require additional ant dependencies like ant-trax package -->
    502504        <junitreport todir="${test.dir}/report">
Note: See TracChangeset for help on using the changeset viewer.