LUCENE-3345: use different tempdir names, for convenience

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1151348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-07-27 06:17:48 +00:00
parent 0fbb554886
commit 8baef1613f
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class Test10KPulsings extends LuceneTestCase {
// we always run this test with pulsing codec.
CodecProvider cp = _TestUtil.alwaysCodec(new PulsingCodec(1));
File f = _TestUtil.getTempDir("10kpulsings");
File f = _TestUtil.getTempDir("10kpulsed");
MockDirectoryWrapper dir = newFSDirectory(f);
dir.setCheckIndexOnClose(false); // we do this ourselves explicitly
RandomIndexWriter iw = new RandomIndexWriter(random, dir,
@ -102,7 +102,7 @@ public class Test10KPulsings extends LuceneTestCase {
// we always run this test with pulsing codec.
CodecProvider cp = _TestUtil.alwaysCodec(new PulsingCodec(1));
File f = _TestUtil.getTempDir("10kpulsings");
File f = _TestUtil.getTempDir("10knotpulsed");
MockDirectoryWrapper dir = newFSDirectory(f);
dir.setCheckIndexOnClose(false); // we do this ourselves explicitly
RandomIndexWriter iw = new RandomIndexWriter(random, dir,