Changeset 13103 in josm for trunk/build.xml


Ignore:
Timestamp:
2017-11-09T20:32:32+01:00 (8 years ago)
Author:
Don-vip
Message:

see #15560 - repair coverage, fix typo, increase integration test timeout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r13097 r13103  
    3232        <property name="javac.compiler" value="com.google.errorprone.ErrorProneAntCompilerAdapter" />
    3333        <property name="java.lang.version" value="1.8" />
     34        <property name="jacoco.includes" value="org.openstreetmap.josm.*" />
    3435        <property name="jacoco.inclbootstrapclasses" value="false" />
    3536        <property name="jacoco.inclnolocationclasses" value="false" />
     
    457458        <sequential>
    458459            <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
    459             <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="org.openstreetmap.josm.*${additionalCoverage}"
    460                 inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}">
     460            <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="${jacoco.includes}"
     461                inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}">
    461462                <junit printsummary="yes" fork="true" forkmode="once">
    462463                    <jvmarg value="-Dfile.encoding=UTF-8"/>
Note: See TracChangeset for help on using the changeset viewer.