mirror of https://github.com/apache/lucene.git
LUCENE-4397: speed up test
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1387548 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ed5679d1f9
commit
aa44b0b3b2
|
@ -513,7 +513,7 @@ public class TestIndexWriterWithThreads extends LuceneTestCase {
|
||||||
|
|
||||||
// LUCENE-4147
|
// LUCENE-4147
|
||||||
public void testRollbackAndCommitWithThreads() throws Exception {
|
public void testRollbackAndCommitWithThreads() throws Exception {
|
||||||
final BaseDirectoryWrapper d = newFSDirectory(_TestUtil.getTempDir("RollbackAndCommitWithThreads"));
|
final BaseDirectoryWrapper d = newDirectory();
|
||||||
if (d instanceof MockDirectoryWrapper) {
|
if (d instanceof MockDirectoryWrapper) {
|
||||||
((MockDirectoryWrapper)d).setPreventDoubleWrite(false);
|
((MockDirectoryWrapper)d).setPreventDoubleWrite(false);
|
||||||
}
|
}
|
||||||
|
@ -524,7 +524,7 @@ public class TestIndexWriterWithThreads extends LuceneTestCase {
|
||||||
writerRef.set(new IndexWriter(d, newIndexWriterConfig(TEST_VERSION_CURRENT, new MockAnalyzer(random()))));
|
writerRef.set(new IndexWriter(d, newIndexWriterConfig(TEST_VERSION_CURRENT, new MockAnalyzer(random()))));
|
||||||
final LineFileDocs docs = new LineFileDocs(random());
|
final LineFileDocs docs = new LineFileDocs(random());
|
||||||
final Thread[] threads = new Thread[threadCount];
|
final Thread[] threads = new Thread[threadCount];
|
||||||
final int iters = atLeast(1000);
|
final int iters = atLeast(100);
|
||||||
final AtomicBoolean failed = new AtomicBoolean();
|
final AtomicBoolean failed = new AtomicBoolean();
|
||||||
final Lock rollbackLock = new ReentrantLock();
|
final Lock rollbackLock = new ReentrantLock();
|
||||||
final Lock commitLock = new ReentrantLock();
|
final Lock commitLock = new ReentrantLock();
|
||||||
|
|
Loading…
Reference in New Issue