Skip to content

Commit

Permalink
revert forking change to perBatch
Browse files Browse the repository at this point in the history
  • Loading branch information
pabender committed Nov 26, 2019
1 parent 30c52cf commit 1d49dc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@

<target name="logheadlesstest" depends="tests, runtime-library-selection" description="run headlesstest test suite with jacoco output">
<jacoco:coverage destfile="${jacocoexec}" excludes="org.slf4j.*">
<junit haltonerror="false" haltonfailure="false" showoutput="yes" printsummary="withOutAndErr" fork="perBatch" dir="." timeout="3600000">
<junit haltonerror="false" haltonfailure="false" showoutput="yes" printsummary="withOutAndErr" fork="yes" dir="." timeout="3600000">

<sysproperty key="java.security.policy" value="${libdir}/security.policy"/>
<sysproperty key="apple.laf.useScreenMenuBar" value="true"/>
Expand Down Expand Up @@ -1487,7 +1487,7 @@
</target>

<target name="ci-test" depends="tests, runtime-library-selection" description="run AllTest CI tests">
<junit haltonerror="false" haltonfailure="false" printsummary="yes" fork="perBatch" dir="." errorProperty="test.failed" failureProperty="test.failed">
<junit haltonerror="false" haltonfailure="false" printsummary="yes" fork="yes" dir="." errorProperty="test.failed" failureProperty="test.failed">

<sysproperty key="java.security.policy" value="${libdir}/security.policy"/>
<sysproperty key="apple.laf.useScreenMenuBar" value="true"/>
Expand Down Expand Up @@ -1523,7 +1523,7 @@
<target name="ci-test-appveyor" depends="tests, runtime-library-selection" description="run ci-test using Appveyor">
<!-- identical to ci-test target except test output is different -->
<jacoco:coverage destfile="${jacocoexec}" excludes="org.slf4j.*">
<junit haltonerror="false" haltonfailure="false" printsummary="yes" showoutput="yes" fork="perBatch" maxmemory="2048m" dir="." errorProperty="test.failed" failureProperty="test.failed">
<junit haltonerror="false" haltonfailure="false" printsummary="yes" showoutput="yes" fork="yes" maxmemory="2048m" dir="." errorProperty="test.failed" failureProperty="test.failed">

<sysproperty key="cucumber.options" value="--tags 'not @Ignore'"/>
<sysproperty key="wdm.forceCache" value="true"/>
Expand Down Expand Up @@ -1591,7 +1591,7 @@

<target name="logalltest" depends="tests, runtime-library-selection" description="run AllTest test suite with jacoco output">
<jacoco:coverage destfile="${jacocoexec}" excludes="org.slf4j.*">
<junit haltonerror="false" haltonfailure="false" showoutput="yes" printsummary="withOutAndErr" fork="perBatch" dir="." timeout="3600000">
<junit haltonerror="false" haltonfailure="false" showoutput="yes" printsummary="withOutAndErr" fork="yes" dir="." timeout="3600000">

<sysproperty key="java.security.policy" value="${libdir}/security.policy"/>
<sysproperty key="apple.laf.useScreenMenuBar" value="true"/>
Expand Down

0 comments on commit 1d49dc2

Please sign in to comment.