Skip to content

Commit abb2baf

Browse files
committed
Suppress Wildfly test in FIPS JVMs (#32543)
WildflyIT fails on FIPS-enabled JVMs. This change mutes this test suite on such JVMs. Relates #32534.
1 parent 60583f2 commit abb2baf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qa/wildfly/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ task deploy(type: Copy) {
8484
}
8585

8686
task writeElasticsearchProperties {
87-
onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) }
87+
onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) && !inFipsJvm }
8888
dependsOn 'integTestCluster#wait', deploy
8989
doLast {
9090
final File elasticsearchProperties = file("${wildflyInstall}/standalone/configuration/elasticsearch.properties")
@@ -177,7 +177,7 @@ task stopWildfly(type: LoggedExec) {
177177
commandLine "${wildflyInstall}/bin/jboss-cli.sh", "--controller=localhost:${-> managementPort}", "--connect", "command=shutdown"
178178
}
179179

180-
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
180+
if (!Os.isFamily(Os.FAMILY_WINDOWS) && !inFipsJvm) {
181181
integTestRunner.dependsOn(configureTransportClient)
182182
final TaskExecutionAdapter logDumpListener = new TaskExecutionAdapter() {
183183
@Override

0 commit comments

Comments
 (0)