--- old/test/gc/stress/systemgc/TestSystemGC.java 2017-07-21 11:57:39.730513607 -0400 +++ new/test/gc/stress/systemgc/TestSystemGC.java 2017-07-21 11:57:38.638451696 -0400 @@ -182,9 +182,11 @@ } public static void main(String[] args) { - // First allocate the long lived objects and then run all phases twice. + // First allocate the long lived objects and then run all phases. populateLongLived(); runAllPhases(); - runAllPhases(); + if (args.length > 0 && args[0].equals("long")) { + runAllPhases(); + } } }