- Timestamp:
- 2017-07-29T22:44:29+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r12501 r12534 487 487 </macrodef> 488 488 <target name="test" depends="test-compile" unless="test.notRequired" 489 description="Run unit , functional and performancetests. 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"> 490 490 <call-junit testfamily="unit"/> 491 491 <call-junit testfamily="functional"/> 492 <call-junit testfamily="performance" coverage="false"/>493 492 </target> 494 493 <target name="test-it" depends="test-compile" unless="test-it.notRequired" … … 496 495 <call-junit testfamily="unit" testITsuffix="IT"/> 497 496 <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"> 501 503 <!-- May require additional ant dependencies like ant-trax package --> 502 504 <junitreport todir="${test.dir}/report">
Note:
See TracChangeset
for help on using the changeset viewer.