Don't run IDP tests in FIPS 140 mode (#57048) (#57098)

We don't support this for now so there is no need to handle all
the test logic/exceptions to run this in FIPS 140 mode.
This commit is contained in:
Ioannis Kakavas 2020-05-25 14:08:48 +03:00 committed by GitHub
parent 5569137ae3
commit 6c832fe4e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -368,4 +368,7 @@ gradle.projectsEvaluated {
.findAll { it.path.startsWith(project.path + ":qa") } .findAll { it.path.startsWith(project.path + ":qa") }
.each { check.dependsOn it.check } .each { check.dependsOn it.check }
} }
if (BuildParams.inFipsJvm) {
// We don't support the IDP in FIPS-140 mode, so no need to run tests
test.enabled = false
}