You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2018/02/27 20:09:10 UTC

lucene-solr:branch_7x: LUCENE-5575: Non-reproducible TestICUTokenizerCJK failure

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 186475fc3 -> a730beb4f


LUCENE-5575: Non-reproducible TestICUTokenizerCJK failure

(cherry picked from commit 7de694e)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a730beb4
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a730beb4
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a730beb4

Branch: refs/heads/branch_7x
Commit: a730beb4fbe2e35fed4f7fd2cc110d9eaf3aa83e
Parents: 186475f
Author: Erick Erickson <er...@apache.org>
Authored: Tue Feb 27 12:03:58 2018 -0800
Committer: Erick Erickson <er...@apache.org>
Committed: Tue Feb 27 12:04:57 2018 -0800

----------------------------------------------------------------------
 .../lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a730beb4/lucene/analysis/icu/src/test/org/apache/lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java
----------------------------------------------------------------------
diff --git a/lucene/analysis/icu/src/test/org/apache/lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java b/lucene/analysis/icu/src/test/org/apache/lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java
index 75481f1..8c51c03 100644
--- a/lucene/analysis/icu/src/test/org/apache/lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java
+++ b/lucene/analysis/icu/src/test/org/apache/lucene/analysis/icu/segmentation/TestICUTokenizerCJK.java
@@ -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);