Added extra logging to build.gradle when maxParallelForks system property is set

This commit is contained in:
Clinton Alexander 2018-08-21 15:04:43 +01:00 committed by Mike Hearn
parent 2d39b39e31
commit e87b33d1e8

View File

@ -195,6 +195,7 @@ allprojects {
if (System.getProperty("test.maxParallelForks") != null) {
maxParallelForks = Integer.valueOf(System.getProperty("test.maxParallelForks"))
logger.debug("System property test.maxParallelForks found - setting max parallel forks to $maxParallelForks for $project")
}
if (project.path.startsWith(':experimental') && System.getProperty("experimental.test.enable") == null) {