From a15f565539880f4b5ef8018bec9c1790323f8f26 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 26 Oct 2016 21:38:15 -0400 Subject: [PATCH] Mark BWC tests as awaits fix These tests are awaiting the BWC indices script to be upgraded for 5.x. Original commit: elastic/x-pack-elasticsearch@540fe73bd007033e823102faf0d21a0c5b4eaf7f --- ...stractOldXPackIndicesBackwardsCompatibilityTestCase.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/elasticsearch/src/test/java/org/elasticsearch/AbstractOldXPackIndicesBackwardsCompatibilityTestCase.java b/elasticsearch/src/test/java/org/elasticsearch/AbstractOldXPackIndicesBackwardsCompatibilityTestCase.java index 3f66b543d19..14a52ccd4bb 100644 --- a/elasticsearch/src/test/java/org/elasticsearch/AbstractOldXPackIndicesBackwardsCompatibilityTestCase.java +++ b/elasticsearch/src/test/java/org/elasticsearch/AbstractOldXPackIndicesBackwardsCompatibilityTestCase.java @@ -96,6 +96,7 @@ public abstract class AbstractOldXPackIndicesBackwardsCompatibilityTestCase exte } } + @AwaitsFix(bugUrl = "https://github.com/elastic/x-plugins/issues/3908") public void testAllVersionsTested() throws Exception { SortedSet expectedVersions = new TreeSet<>(); for (Version v : VersionUtils.allVersions()) { @@ -114,6 +115,7 @@ public abstract class AbstractOldXPackIndicesBackwardsCompatibilityTestCase exte } } + @AwaitsFix(bugUrl = "https://github.com/elastic/x-plugins/issues/3908") public void testOldIndexes() throws Exception { Collections.shuffle(dataFiles, random()); for (String dataFile : dataFiles) { @@ -134,6 +136,10 @@ public abstract class AbstractOldXPackIndicesBackwardsCompatibilityTestCase exte } } + public void testEmpty() { + // empty test so test suite does not fail for no tests + } + /** * Should we test this version at all? Called before loading the data directory. Return false to skip it entirely. */