Use preferably sysprop "temptDir" also in backwards tests.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@927996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2010-03-26 18:13:39 +00:00
parent 9ab93f2fcc
commit 6e4c79b219
6 changed files with 15 additions and 14 deletions

View File

@ -384,9 +384,9 @@ public class TestFieldsReader extends LuceneTestCase {
// LUCENE-1262
public void testExceptions() throws Throwable {
String tempDir = System.getProperty("java.io.tmpdir");
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new IOException("java.io.tmpdir undefined, cannot run test");
throw new IOException("System property tempDir undefined, cannot run test");
File indexDir = new File(tempDir, "testfieldswriterexceptions");
try {

View File

@ -81,10 +81,9 @@ public class TestIndexReaderCloneNorms extends LuceneTestCase {
*/
public void testNorms() throws IOException {
// tmp dir
String tempDir = System.getProperty("java.io.tmpdir");
if (tempDir == null) {
throw new IOException("java.io.tmpdir undefined, cannot run test");
}
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new IOException("System property tempDir undefined, cannot run test");
// test with a single index: index1
File indexDir1 = new File(tempDir, "lucenetestindex1");

View File

@ -1095,9 +1095,9 @@ public class TestIndexReaderReopen extends LuceneTestCase {
@Override
protected void setUp() throws Exception {
super.setUp();
String tempDir = System.getProperty("java.io.tmpdir");
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new IOException("java.io.tmpdir undefined, cannot run test");
throw new IOException("System property tempDir undefined, cannot run test");
indexDir = new File(tempDir, "IndexReaderReopen");
}

View File

@ -39,8 +39,10 @@ public class TestIndexWriterLockRelease extends LuceneTestCase {
public void setUp() throws Exception {
super.setUp();
if (this.__test_dir == null) {
String tmp_dir = System.getProperty("java.io.tmpdir", "tmp");
this.__test_dir = new File(tmp_dir, "testIndexWriter");
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new IOException("System property tempDir undefined, cannot run test");
this.__test_dir = new File(tempDir, "testIndexWriter");
if (this.__test_dir.exists()) {
throw new IOException("test directory \"" + this.__test_dir.getPath() + "\" already exists (please remove by hand)");

View File

@ -49,9 +49,9 @@ public class TestRAMDirectory extends LuceneTestCase {
@Override
public void setUp () throws Exception {
super.setUp();
String tempDir = System.getProperty("java.io.tmpdir");
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new IOException("java.io.tmpdir undefined, cannot run test");
throw new IOException("System property tempDir undefined, cannot run test");
indexDir = new File(tempDir, "RAMDirIndex");
Directory dir = FSDirectory.open(indexDir);

View File

@ -33,9 +33,9 @@ public class _TestUtil {
/** Returns temp dir, containing String arg in its name;
* does not create the directory. */
public static File getTempDir(String desc) {
String tempDir = System.getProperty("java.io.tmpdir");
String tempDir = System.getProperty("tempDir", System.getProperty("java.io.tmpdir"));
if (tempDir == null)
throw new RuntimeException("java.io.tmpdir undefined, cannot run test");
throw new RuntimeException("System property tempDir undefined, cannot run test");
return new File(tempDir, desc + "." + new Random().nextLong());
}