< prev index next >

test/compiler/relocations/TestPrintRelocations.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 23,38 **** /** * @test * @bug 8044538 * @summary assert hit while printing relocations for jump table entries ! * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:+PrintRelocations TestPrintRelocations */ - /** * The test compiles all methods (-Xcomp) and prints their relocation * entries (-XX:+PrintRelocations) to make sure the printing works. */ public class TestPrintRelocations { ! static public void main(String[] args) { } } --- 23,43 ---- /** * @test * @bug 8044538 * @summary assert hit while printing relocations for jump table entries ! * ! * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:+PrintRelocations ! * compiler.relocations.TestPrintRelocations */ /** * The test compiles all methods (-Xcomp) and prints their relocation * entries (-XX:+PrintRelocations) to make sure the printing works. */ + + package compiler.relocations; + public class TestPrintRelocations { ! static public void main(String[] args) { ! } }
< prev index next >