< prev index next >

test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/ByteCodeGenerator.java

Print this page
rev 53171 : 8158646: [jittester] generated tests may not compile by javac
Reviewed-by: duke

*** 37,47 **** */ class ByteCodeGenerator extends TestsGenerator { private static final String DEFAULT_SUFFIX = "bytecode_tests"; ByteCodeGenerator() { ! super(DEFAULT_SUFFIX); } ByteCodeGenerator(String suffix, Function<String, String[]> preRunActions, String jtDriverOptions) { super(suffix, preRunActions, jtDriverOptions); } --- 37,47 ---- */ class ByteCodeGenerator extends TestsGenerator { private static final String DEFAULT_SUFFIX = "bytecode_tests"; ByteCodeGenerator() { ! super(DEFAULT_SUFFIX, s -> new String[0], "-Xcomp"); } ByteCodeGenerator(String suffix, Function<String, String[]> preRunActions, String jtDriverOptions) { super(suffix, preRunActions, jtDriverOptions); }
< prev index next >