comparison test/compiler/uncommontrap/TestSpecTrapClassUnloading.java @ 14670:27689a7550a8

8036092: [TESTBUG] compiler/uncommontrap/TestSpecTrapClassUnloading.java fails with: Unrecognized VM option 'UseTypeSpeculation' Summary: Add -XX:+IgnoreUnrecognizedVMOptions to @main/othervm to make the test pass on Client VM Reviewed-by: kvn, roland
author anoll
date Wed, 05 Mar 2014 06:08:19 +0100
parents fdad2932c73f
children 45b0159f30f2
comparison
equal deleted inserted replaced
14661:bbfe3ac1471d 14670:27689a7550a8
23 23
24 /* 24 /*
25 * @test 25 * @test
26 * @bug 8031752 26 * @bug 8031752
27 * @summary speculative traps need to be cleaned up at GC 27 * @summary speculative traps need to be cleaned up at GC
28 * @run main/othervm -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation -XX:+UnlockExperimentalVMOptions -XX:+UseTypeSpeculation -XX:TypeProfileLevel=222 -XX:CompileCommand=exclude,java.lang.reflect.Method::invoke -XX:CompileCommand=exclude,sun.reflect.DelegatingMethodAccessorImpl::invoke -Xmx1M TestSpecTrapClassUnloading 28 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation -XX:+UnlockExperimentalVMOptions -XX:+UseTypeSpeculation -XX:TypeProfileLevel=222 -XX:CompileCommand=exclude,java.lang.reflect.Method::invoke -XX:CompileCommand=exclude,sun.reflect.DelegatingMethodAccessorImpl::invoke -Xmx1M TestSpecTrapClassUnloading
29 * 29 *
30 */ 30 */
31 31
32 import java.lang.reflect.Method; 32 import java.lang.reflect.Method;
33 33