You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2012/08/28 23:18:16 UTC

svn commit: r1378354 - /lucene/dev/branches/branch_4x/lucene/common-build.xml

Author: dweiss
Date: Tue Aug 28 21:18:15 2012
New Revision: 1378354

URL: http://svn.apache.org/viewvc?rev=1378354&view=rev
Log:
LUCENE-4338: Redirect java.io.tmpdir so that each JVM gets their own tmpdir under a build/test.

Modified:
    lucene/dev/branches/branch_4x/lucene/common-build.xml

Modified: lucene/dev/branches/branch_4x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/common-build.xml?rev=1378354&r1=1378353&r2=1378354&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_4x/lucene/common-build.xml Tue Aug 28 21:18:15 2012
@@ -847,7 +847,8 @@
             <sysproperty key="tests.multiplier" value="@{tests.multiplier}"/>
             
             <!-- Temporary directory in the cwd. -->
-            <sysproperty key="tempDir" value="."/>
+            <sysproperty key="tempDir" value="." />
+            <sysproperty key="java.io.tmpdir" value="." />
 
             <sysproperty key="lucene.version" value="${dev.version}"/>