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:04:27 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/master d512cd760 -> 7de694e77


LUCENE-5575: Non-reproducible TestICUTokenizerCJK failure


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

Branch: refs/heads/master
Commit: 7de694e7713ef59ac6b578c0f8ee10759dd6a30e
Parents: d512cd7
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:03:58 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/7de694e7/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);