You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2010/08/25 22:10:10 UTC

svn commit: r989334 - in /lucene/dev/trunk/lucene: common-build.xml src/test/org/apache/lucene/util/LuceneTestCaseJ4.java

Author: rmuir
Date: Wed Aug 25 20:10:10 2010
New Revision: 989334

URL: http://svn.apache.org/viewvc?rev=989334&view=rev
Log:
LUCENE-2598: run tests varying Directory impl by default

Modified:
    lucene/dev/trunk/lucene/common-build.xml
    lucene/dev/trunk/lucene/src/test/org/apache/lucene/util/LuceneTestCaseJ4.java

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=989334&r1=989333&r2=989334&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Wed Aug 25 20:10:10 2010
@@ -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"/>

Modified: lucene/dev/trunk/lucene/src/test/org/apache/lucene/util/LuceneTestCaseJ4.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/test/org/apache/lucene/util/LuceneTestCaseJ4.java?rev=989334&r1=989333&r2=989334&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/test/org/apache/lucene/util/LuceneTestCaseJ4.java (original)
+++ lucene/dev/trunk/lucene/src/test/org/apache/lucene/util/LuceneTestCaseJ4.java Wed Aug 25 20:10:10 2010
@@ -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"));