You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by is...@apache.org on 2013/06/02 01:12:46 UTC

svn commit: r1488632 - /mahout/trunk/pom.xml

Author: isabel
Date: Sat Jun  1 23:12:45 2013
New Revision: 1488632

URL: http://svn.apache.org/r1488632
Log:
MAHOUT-916 - make mahout tests run in parallel

Currently set to class parallel (method parallel fails with our tests at the
moment), set to run 1.5 as many test thread as the machine running them as CPUs.

Modified:
    mahout/trunk/pom.xml

Modified: mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/pom.xml?rev=1488632&r1=1488631&r2=1488632&view=diff
==============================================================================
--- mahout/trunk/pom.xml (original)
+++ mahout/trunk/pom.xml Sat Jun  1 23:12:45 2013
@@ -673,7 +673,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <forkMode>once</forkMode>
+          <forkCount>1.5C</forkCount>
+          <reuseForks>false</reuseForks>
+          <parallel>classes</parallel>
           <argLine>-Xms256m -Xmx1800m</argLine>
           <testFailureIgnore>false</testFailureIgnore>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>