--- old/test/lib/testlibrary/jdk/testlibrary/Utils.java 2014-08-15 10:14:31.820446724 +0200 +++ new/test/lib/testlibrary/jdk/testlibrary/Utils.java 2014-08-15 10:14:31.648446731 +0200 @@ -126,7 +126,10 @@ * GC specified by the framework must first be removed. * @return A copy of given opts with all GC options removed. */ - private static final Pattern useGcPattern = Pattern.compile("\\-XX\\:[\\+\\-]Use.+GC"); + private static final Pattern useGcPattern = Pattern.compile( + "(?:\\-XX\\:[\\+\\-]Use.+GC)" + + "|(?:\\-Xconcgc)" + + "|(?:\\-Xincgc)"); public static List removeGcOpts(List opts) { List optsWithoutGC = new ArrayList(); for (String opt : opts) {