Skip to content

Commit

Permalink
Suppress Wildfly test in FIPS JVMs (#32543)
Browse files Browse the repository at this point in the history
WildflyIT fails on FIPS-enabled JVMs. This change mutes this test suite on such
JVMs. Relates #32534.
  • Loading branch information
DaveCTurner committed Aug 3, 2018
1 parent 1170ab9 commit 25a0873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa/wildfly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ task deploy(type: Copy) {
}

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

if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
if (!Os.isFamily(Os.FAMILY_WINDOWS) && !inFipsJvm) {
integTestRunner.dependsOn(configureTransportClient)
final TaskExecutionAdapter logDumpListener = new TaskExecutionAdapter() {
@Override
Expand Down

0 comments on commit 25a0873

Please sign in to comment.