From 820029522b0e6774e64a7816a2ddd95031d9acad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BCscher?= Date: Sun, 3 Feb 2019 19:52:53 +0100 Subject: [PATCH] Mute DateProcessorTests#testJodaPatternLocale (#38265) Only fails on FIPS 8, muting this selectively. --- .../org/elasticsearch/ingest/common/DateProcessorTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/DateProcessorTests.java b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/DateProcessorTests.java index c9ab07d82bb..2e32e3fd0eb 100644 --- a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/DateProcessorTests.java +++ b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/DateProcessorTests.java @@ -113,6 +113,8 @@ public class DateProcessorTests extends ESTestCase { } public void testJavaPatternLocale() { + // @AwaitsFix(bugUrl="https://github.com/elastic/elasticsearch/issues/31724") + assumeFalse("Can't run in a FIPS JVM, Joda parse date error", inFipsJvm()); DateProcessor dateProcessor = new DateProcessor(randomAlphaOfLength(10), templatize(ZoneId.of("Europe/Amsterdam")), templatize(Locale.ITALIAN), "date_as_string", Collections.singletonList("yyyy dd MMMM"), "date_as_date");