LUCENE-2598: run tests varying Directory impl by default

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@989334 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2010-08-25 20:10:10 +00:00
parent 6e05f994b8
commit 4378ffce0b
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@
<property name="tests.codec" value="random" />
<property name="tests.locale" value="random" />
<property name="tests.timezone" value="random" />
<property name="tests.directory" value="RAMDirectory" />
<property name="tests.directory" value="random" />
<property name="tests.iter" value="1" />
<property name="javac.deprecation" value="off"/>

View File

@ -155,7 +155,7 @@ public class LuceneTestCaseJ4 {
/** Gets the timezone to run tests with */
static final String TEST_TIMEZONE = System.getProperty("tests.timezone", "random");
/** Gets the directory to run tests with */
static final String TEST_DIRECTORY = System.getProperty("tests.directory", "RAMDirectory");
static final String TEST_DIRECTORY = System.getProperty("tests.directory", "random");
/** Get the number of times to run tests */
static final int TEST_ITER = Integer.parseInt(System.getProperty("tests.iter", "1"));