mirror of https://github.com/apache/lucene.git
ignore this test if one writer times out getting a lock
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1385363 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d7309c134
commit
eb122170c7
|
@ -33,6 +33,7 @@ import org.apache.lucene.search.DocIdSetIterator;
|
||||||
import org.apache.lucene.store.AlreadyClosedException;
|
import org.apache.lucene.store.AlreadyClosedException;
|
||||||
import org.apache.lucene.store.BaseDirectoryWrapper;
|
import org.apache.lucene.store.BaseDirectoryWrapper;
|
||||||
import org.apache.lucene.store.Directory;
|
import org.apache.lucene.store.Directory;
|
||||||
|
import org.apache.lucene.store.LockObtainFailedException;
|
||||||
import org.apache.lucene.store.MockDirectoryWrapper;
|
import org.apache.lucene.store.MockDirectoryWrapper;
|
||||||
import org.apache.lucene.util.Bits;
|
import org.apache.lucene.util.Bits;
|
||||||
import org.apache.lucene.util.BytesRef;
|
import org.apache.lucene.util.BytesRef;
|
||||||
|
@ -453,6 +454,9 @@ public class TestIndexWriterWithThreads extends LuceneTestCase {
|
||||||
thread1.join();
|
thread1.join();
|
||||||
thread2.join();
|
thread2.join();
|
||||||
|
|
||||||
|
assumeFalse("aborting test: timeout obtaining lock", thread1.failure instanceof LockObtainFailedException);
|
||||||
|
assumeFalse("aborting test: timeout obtaining lock", thread2.failure instanceof LockObtainFailedException);
|
||||||
|
|
||||||
assertFalse("Failed due to: " + thread1.failure, thread1.failed);
|
assertFalse("Failed due to: " + thread1.failure, thread1.failed);
|
||||||
assertFalse("Failed due to: " + thread2.failure, thread2.failed);
|
assertFalse("Failed due to: " + thread2.failure, thread2.failed);
|
||||||
// now verify that we have two documents in the index
|
// now verify that we have two documents in the index
|
||||||
|
|
Loading…
Reference in New Issue