Skip to content

Commit f92ef25

Browse files
committed
Tests: Disable rolling upgrade tests with system key on fips JVM (#32775)
This disables the x-pack rolling upgrade tests using a fips JVM, as there are problems creating the keystore. Relates #32737
1 parent 059bffd commit f92ef25

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import org.elasticsearch.gradle.test.RestIntegTestTask
2+
3+
// Skip test on FIPS FIXME https://github.com/elastic/elasticsearch/issues/32737
4+
if (project.inFipsJvm) {
5+
tasks.withType(RestIntegTestTask) {
6+
enabled = false
7+
}
8+
}

0 commit comments

Comments
 (0)