Author: fschumacher
Date: Wed Feb 14 17:49:08 2018
New Revision: 1824262

URL: http://svn.apache.org/viewvc?rev=1824262&view=rev
Log:
Don't start a new JVM for each junit test when using complete-junit

This cuts down the time to complete the junit tests considerably. It
takes less then two minutes on my machine.

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1824262&r1=1824261&r2=1824262&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Wed Feb 14 17:49:08 2018
@@ -3130,6 +3130,7 @@ run JMeter unless all the JMeter jars ar
   </taskdef>
   <jacoco:coverage destfile="reports/jacoco.exec">
   <junit fork="true"
+      forkmode="once"
       dir="${basedir}/bin"
       showoutput="${test.showoutput}"
       printsummary="on">


Reply via email to