mirror of https://github.com/apache/lucene.git
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:
parent
6e05f994b8
commit
4378ffce0b
|
@ -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"/>
|
||||
|
|
|
@ -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"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue