1 /* @test ExecuteInternalVMTests 2 * @bug 8004691 3 * @summary Add a jtreg test that exercises the ExecuteInternalVMTests flag 4 * @run main/othervm -XX:+ExecuteInternalVMTests -XX:+IgnoreUnrecognizedVMOptions ExecuteInternalVMTests 5 */ 6 public class ExecuteInternalVMTests { 7 public static void main(String[] args) throws Exception { 8 // The tests that are run are the HotSpot internal tests which are 9 // executed the flag -XX:+ExecuteInternalVMTests is used. 10 11 // The flag -XX:+ExecuteInternalVMTests can only be used for 12 // non-product builds of HotSpot. Therefore, the flag 13 // -XX:+IgnoreUnrecognizedVMOptions is also used, which means that this 14 // test will do nothing on a product build. 15 } 16 }