You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/08/22 16:05:07 UTC

git commit: ACCUMULO-1537 allow for fork count to be set at the cmd line

Updated Branches:
  refs/heads/master a978b0b09 -> 21f93e34b


ACCUMULO-1537 allow for fork count to be set at the cmd line


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/21f93e34
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/21f93e34
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/21f93e34

Branch: refs/heads/master
Commit: 21f93e34bce1e3e1769cab6f98d7d85ecac2fce7
Parents: a978b0b
Author: Eric Newton <ec...@apache.org>
Authored: Thu Aug 22 10:03:25 2013 -0400
Committer: Eric Newton <ec...@apache.org>
Committed: Thu Aug 22 10:03:25 2013 -0400

----------------------------------------------------------------------
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/21f93e34/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8ee98e6..c03ee25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,6 +107,7 @@
     </site>
   </distributionManagement>
   <properties>
+    <accumulo.it.forkCount>1</accumulo.it.forkCount>
     <accumulo.it.threads>1</accumulo.it.threads>
     <!-- used for filtering the java source with the current version -->
     <accumulo.release.version>${project.version}</accumulo.release.version>
@@ -677,7 +678,7 @@
               <!--parallel>classes</parallel-->
               <reuseForks>false</reuseForks>
               <forkMode>always</forkMode>
-              <forkCount>8</forkCount>
+              <forkCount>${accumulo.it.forkCount}</forkCount>
               <perCoreThreadCount>false</perCoreThreadCount>
               <threadCount>${accumulo.it.threads}</threadCount>
               <redirectTestOutputToFile>true</redirectTestOutputToFile>