Skip to content

Commit

Permalink
Disable thirdPartyAudit tests when running in a FIPS JVM (#49115)
Browse files Browse the repository at this point in the history
This fixes a regression introduced in #42042. The logic here was
mistakenly inverted such that we only run these tests in a FIPS JVM
which is the opposite of what we intend.
  • Loading branch information
mark-vieira committed Nov 15, 2019
1 parent 6f14a63 commit a370008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distribution/tools/plugin-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ test {
thirdPartyAudit.onlyIf {
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
// rather than provide a long list of exclusions, disable the check on FIPS.
BuildParams.inFipsJvm
BuildParams.inFipsJvm == false
}

/*
Expand Down

0 comments on commit a370008

Please sign in to comment.