LUCENE-5575: Non-reproducible TestICUTokenizerCJK failure

This commit is contained in:
Erick Erickson 2018-02-27 12:03:58 -08:00
parent d512cd7604
commit 7de694e771
1 changed files with 4 additions and 2 deletions

View File

@ -97,13 +97,15 @@ public class TestICUTokenizerCJK extends BaseTokenStreamTestCase {
}
/** blast some random strings through the analyzer */
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-5575")
//Commented out 27-Feb, leaving comment in in case errors come back
//@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-5575")
public void testRandomStrings() throws Exception {
checkRandomData(random(), a, 10000*RANDOM_MULTIPLIER);
}
/** blast some random large strings through the analyzer */
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-5575")
//Commented out 27-Feb, leaving comment in in case errors come back
//@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-5575")
public void testRandomHugeStrings() throws Exception {
Random random = random();
checkRandomData(random, a, 100*RANDOM_MULTIPLIER, 8192);