mirror of https://github.com/apache/lucene.git
add nocommit; try to fix false test failure due to concurrent check index running while primary is still closing
This commit is contained in:
parent
8889469b8b
commit
7af83c486b
|
@ -157,9 +157,7 @@ class NodeProcess implements Closeable {
|
|||
throw new RuntimeException("shutdown failed");
|
||||
}
|
||||
} catch (Throwable t) {
|
||||
System.out.println("top: shutdown failed; skipping");
|
||||
t.printStackTrace(System.out);
|
||||
return false;
|
||||
System.out.println("top: shutdown failed; ignoring");
|
||||
}
|
||||
try {
|
||||
p.waitFor();
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.apache.lucene.util.LuceneTestCase.SuppressSysoutChecks;
|
|||
|
||||
import com.carrotsearch.randomizedtesting.SeedUtils;
|
||||
|
||||
// nocommit make some explicit failure tests
|
||||
|
||||
// MockRandom's .sd file has no index header/footer:
|
||||
@SuppressCodecs({"MockRandom", "Memory", "Direct", "SimpleText"})
|
||||
@SuppressSysoutChecks(bugUrl = "Stuff gets printed, important stuff for debugging a failure")
|
||||
|
|
Loading…
Reference in New Issue