allow junit tempDir property to be overwritten via system properties

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1352504 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Willnauer 2012-06-21 11:49:56 +00:00
parent b4eb2841d8
commit 0ae03a37cf
1 changed files with 2 additions and 1 deletions

View File

@ -95,6 +95,7 @@
<property name="tests.verbose" value="false"/>
<property name="tests.infostream" value="${tests.verbose}"/>
<property name="tests.heapsize" value="512M"/>
<property name="tests.tempDir" value="${build.dir}/test"/>
<!-- Override these in your local properties to your desire. -->
<!-- Show simple class names (no package) in test suites. -->
@ -705,7 +706,7 @@
<attribute name="junit.output.dir" default="${junit.output.dir}"/>
<attribute name="junit.classpath" default="junit.classpath"/>
<attribute name="testsDir" default="${build.dir}/classes/test"/>
<attribute name="tempDir" default="${build.dir}/test"/>
<attribute name="tempDir" default="${tests.tempDir}"/>
<attribute name="threadNum" default="1"/>
<attribute name="tests.nightly" default="${tests.nightly}"/>
<attribute name="tests.weekly" default="${tests.weekly}"/>