Don't run build-tools integ tests on FIPS (#42986)

These run Gradle and FIPS isn't supported

Closes #41721
This commit is contained in:
Alpar Torok 2019-06-10 11:08:34 +03:00
parent 68339f90e9
commit a5d4591af7
1 changed files with 2 additions and 0 deletions

View File

@ -183,6 +183,8 @@ if (project != rootProject) {
systemProperty 'test.lucene-snapshot-revision', isLuceneSnapshot[0][1]
}
maxParallelForks System.getProperty('tests.jvms', project.rootProject.ext.defaultParallel.toString()) as Integer
// These tests run Gradle which doesn't have FIPS support
onlyIf { project.inFipsJvm == false }
}
check.dependsOn(integTest)