The current concurrency calculation when running hotspot jtreg tests is:
min((cores / 2) * CONCURRENCY_FACTOR, 12)
this should be changed to be
min(cores / 2, 12) * CONCURRENCY_FACTOR
min((cores / 2) * CONCURRENCY_FACTOR, 12)
this should be changed to be
min(cores / 2, 12) * CONCURRENCY_FACTOR