Changeset 10431 in josm for trunk/build.xml
- Timestamp:
- 2016-06-19T23:50:16+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r10301 r10431 383 383 <attribute name="testfamily"/> 384 384 <attribute name="testITsuffix" default=""/> 385 <attribute name="coverage" default="true"/> 385 386 <sequential> 386 387 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/> 387 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" >388 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}"> 388 389 <junit printsummary="yes" fork="true" forkmode="once"> 389 390 <jvmarg value="-Dfile.encoding=UTF-8"/> … … 415 416 <call-junit testfamily="unit"/> 416 417 <call-junit testfamily="functional"/> 417 <call-junit testfamily="performance" />418 <call-junit testfamily="performance" coverage="false"/> 418 419 </target> 419 420 <target name="test-it" depends="test-compile" unless="test-it.notRequired" … … 421 422 <call-junit testfamily="unit" testITsuffix="IT"/> 422 423 <call-junit testfamily="functional" testITsuffix="IT"/> 423 <call-junit testfamily="performance" testITsuffix="IT" />424 <call-junit testfamily="performance" testITsuffix="IT" coverage="false"/> 424 425 </target> 425 426 <target name="test-html" depends="test, test-it" description="Generate HTML test reports">
Note:
See TracChangeset
for help on using the changeset viewer.