mirror of https://github.com/apache/lucene.git
workaround false fail for now
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1601815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
923e8bab1e
commit
a27d245888
|
@ -240,6 +240,14 @@ public abstract class BaseNormsFormatTestCase extends BaseIndexFileFormatTestCas
|
|||
// TODO: improve
|
||||
doc.add(new TextField("foobar", "boo", Field.Store.NO));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testMergeStability() throws Exception {
|
||||
// TODO: can we improve this base test to just have subclasses declare the extensions to check,
|
||||
// rather than a blacklist to exclude? we need to index stuff to get norms, but we dont care about testing
|
||||
// the PFs actually doing that...
|
||||
assumeTrue("The MockRandom PF randomizes content on the fly, so we can't check it", false);
|
||||
}
|
||||
|
||||
// TODO: test thread safety (e.g. across different fields) explicitly here
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue