comparison test/compiler/classUnloading/methodUnloading/TestMethodUnloading.java @ 20384:d2c5fee67143

8055657: Test compiler/classUnloading/methodUnloading/TestMethodUnloading.java does not work with non-default GC Summary: Remove the '-XX:+UseParallelGC' parameter from the test because it is conflicting with other GC settings. Reviewed-by: kvn
author thartmann
date Fri, 29 Aug 2014 10:47:50 +0200
parents 85c339200299
children
comparison
equal deleted inserted replaced
20376:bb239308be67 20384:d2c5fee67143
33 * @summary "Tests the unloading of methods to to class unloading" 33 * @summary "Tests the unloading of methods to to class unloading"
34 * @library /testlibrary /testlibrary/whitebox 34 * @library /testlibrary /testlibrary/whitebox
35 * @build TestMethodUnloading 35 * @build TestMethodUnloading
36 * @build WorkerClass 36 * @build WorkerClass
37 * @run main ClassFileInstaller sun.hotspot.WhiteBox 37 * @run main ClassFileInstaller sun.hotspot.WhiteBox
38 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-BackgroundCompilation -XX:-UseCompressedOops -XX:+UseParallelGC -XX:CompileOnly=TestMethodUnloading::doWork TestMethodUnloading 38 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-BackgroundCompilation -XX:-UseCompressedOops -XX:CompileOnly=TestMethodUnloading::doWork TestMethodUnloading
39 */ 39 */
40 public class TestMethodUnloading { 40 public class TestMethodUnloading {
41 private static final String workerClassName = "WorkerClass"; 41 private static final String workerClassName = "WorkerClass";
42 private static int work = -1; 42 private static int work = -1;
43 43