Index: build.xml
===================================================================
--- build.xml	(revision 1417604)
+++ build.xml	(working copy)
@@ -298,7 +298,7 @@
     <antcall>
       <param name="run.clover" value="true"/>
       <!-- must be 1, as clover does not like parallel test runs: -->
-      <param name="tests.jvms" value="1"/>
+      <param name="tests.jvms.override" value="1"/>
       <!-- Also override some other props to be fast: -->
       <param name="tests.multiplier" value="1"/>
       <param name="tests.nightly" value="false"/>
Index: lucene/analysis/uima/build.xml
===================================================================
--- lucene/analysis/uima/build.xml	(revision 1417604)
+++ lucene/analysis/uima/build.xml	(working copy)
@@ -24,7 +24,7 @@
   </description>
 	
   <property name="tests.userdir" value="src/test-files"/>
-  <property name="tests.jvms" value="1" />
+  <property name="tests.jvms.override" value="1" />
 
   <path id="uimajars">
     <pathelement path="lib/uimaj-core-2.3.1.jar"/>
Index: lucene/benchmark/build.xml
===================================================================
--- lucene/benchmark/build.xml	(revision 1417604)
+++ lucene/benchmark/build.xml	(working copy)
@@ -27,7 +27,7 @@
     <property name="working.dir" location="work"/>
 
     <!-- the tests have some parallel problems -->
-    <property name="tests.jvms" value="1"/>
+    <property name="tests.jvms.override" value="1"/>
 
     <target name="check-files">
         <available file="temp/news20.tar.gz" property="news20.exists"/>
Index: lucene/common-build.xml
===================================================================
--- lucene/common-build.xml	(revision 1417604)
+++ lucene/common-build.xml	(working copy)
@@ -82,7 +82,11 @@
   <property name="args" value=""/>
 
   <property name="tests.seed" value="" />
+
+  <!-- This is a hack to be able to override the JVM count for special modules that don't like parallel tests: -->
   <property name="tests.jvms" value="auto" />
+  <property name="tests.jvms.override" value="${tests.jvms}" />
+
   <property name="tests.multiplier" value="1" />
   <property name="tests.codec" value="random" />
   <property name="tests.postingsformat" value="random" />
@@ -1160,7 +1164,7 @@
        jars so we just order it after compile-test to ensure that -->
   <target name="test" depends="clover,compile-test,install-junit4-taskdef,validate" description="Runs unit tests">
     <mkdir dir="${junit.output.dir}"/>
-    <test-macro threadNum="${tests.jvms}" />
+    <test-macro threadNum="${tests.jvms.override}" />
   </target>
 
   <!--
Index: solr/contrib/dataimporthandler/build.xml
===================================================================
--- solr/contrib/dataimporthandler/build.xml	(revision 1417604)
+++ solr/contrib/dataimporthandler/build.xml	(working copy)
@@ -24,7 +24,7 @@
   </description>
 
   <!-- the tests have some parallel problems: writability to single copy of dataimport.properties -->
-  <property name="tests.jvms" value="1"/>
+  <property name="tests.jvms.override" value="1"/>
 
   <import file="../contrib-build.xml"/>
 

