Skip to content

Commit 789c0a9

Browse files
committed
Quiet BWC analysis test case for now.
See https://issues.apache.org/jira/browse/LUCENE-5927.
1 parent 2619911 commit 789c0a9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/java/org/elasticsearch/bwcompat/BasicAnalysisBackwardCompatibilityTests.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
package org.elasticsearch.bwcompat;
2020

2121
import com.carrotsearch.randomizedtesting.generators.RandomPicks;
22+
import org.apache.lucene.util.LuceneTestCase;
2223
import org.elasticsearch.Version;
2324
import org.elasticsearch.action.admin.indices.analyze.AnalyzeResponse;
2425
import org.elasticsearch.indices.analysis.PreBuiltAnalyzers;
2526
import org.elasticsearch.test.ElasticsearchBackwardsCompatIntegrationTest;
2627
import org.elasticsearch.test.ElasticsearchIntegrationTest;
28+
import org.junit.Ignore;
2729
import org.junit.Test;
2830

2931
import java.io.IOException;
@@ -34,8 +36,6 @@
3436
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked;
3537
import static org.hamcrest.Matchers.equalTo;
3638

37-
/**
38-
*/
3939
@ElasticsearchIntegrationTest.ClusterScope(numDataNodes = 0, scope = ElasticsearchIntegrationTest.Scope.SUITE, numClientNodes = 0, transportClientRatio = 0.0)
4040
public class BasicAnalysisBackwardCompatibilityTests extends ElasticsearchBackwardsCompatIntegrationTest {
4141

@@ -44,6 +44,8 @@ public class BasicAnalysisBackwardCompatibilityTests extends ElasticsearchBackwa
4444
* TODO we need this for random tokenizers / tokenfilters as well
4545
*/
4646
@Test
47+
@Ignore
48+
@LuceneTestCase.AwaitsFix(bugUrl="https://github.com/elasticsearch/dev/issues/264")
4749
public void testAnalyzerTokensAfterUpgrade() throws IOException, ExecutionException, InterruptedException {
4850
int numFields = randomIntBetween(PreBuiltAnalyzers.values().length, PreBuiltAnalyzers.values().length * 10);
4951
StringBuilder builder = new StringBuilder();

0 commit comments

Comments
 (0)