From e64bb48a716f971fdb37b789dec2ba2bc1a35e82 Mon Sep 17 00:00:00 2001 From: Alpar Torok Date: Thu, 9 Aug 2018 21:54:58 +0300 Subject: [PATCH] mute test #32737 --- .../qa/full-cluster-restart/with-system-key/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/x-pack/qa/full-cluster-restart/with-system-key/build.gradle b/x-pack/qa/full-cluster-restart/with-system-key/build.gradle index e69de29bb2d1d..928280b6584bd 100644 --- a/x-pack/qa/full-cluster-restart/with-system-key/build.gradle +++ b/x-pack/qa/full-cluster-restart/with-system-key/build.gradle @@ -0,0 +1,8 @@ +import org.elasticsearch.gradle.test.RestIntegTestTask + +// Skip test on FIPS FIXME https://github.com/elastic/elasticsearch/issues/32737 +if (project.inFipsJvm) { + tasks.withType(RestIntegTestTask) { + enabled = false + } +}