comparison test/compiler/uncommontrap/TestSpecTrapClassUnloading.java @ 17734:f258347cec12

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 b8413a9cbb84
children 45b0159f30f2
comparison
equal deleted inserted replaced
17733:1a43981d86ea 17734:f258347cec12
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