From 8e58cc09564ebae9583ad0a6828032e1d4ceff87 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Fri, 10 Aug 2018 13:41:29 +0200 Subject: [PATCH] Tests: Disable rolling upgrade tests with system key on fips JVM This disables the x-pack rolling upgrade tests using a fips JVM, as there are problems creating the keystore. Relates #32737 --- x-pack/qa/rolling-upgrade/with-system-key/build.gradle | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/x-pack/qa/rolling-upgrade/with-system-key/build.gradle b/x-pack/qa/rolling-upgrade/with-system-key/build.gradle index 03505e01dedd8..5aaa1ed1eff9b 100644 --- a/x-pack/qa/rolling-upgrade/with-system-key/build.gradle +++ b/x-pack/qa/rolling-upgrade/with-system-key/build.gradle @@ -1 +1,10 @@ +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 + } +} + group = "${group}.x-pack.qa.rolling-upgrade.with-system-key"