publicclass Main extends Test1953 { public Main(boolean run_class_load_tests) { super(run_class_load_tests, (testObj) -> { try { // Make sure everything is jitted in the method. We do this before calling setup since the // suspend setup might make it impossible to jit the methods (by setting breakpoints or // something). for (Method m : testObj.getClass().getMethods()) { if ((m.getModifiers() & Modifier.NATIVE) == 0 &&
!m.getName().startsWith("$noprecompile$")) {
ensureMethodJitCompiled(m);
}
}
} catch (Exception e) {}
});
}
publicstaticvoid main(String[] args) throws Exception { new Main(!Arrays.asList(args).contains("DISABLE_CLASS_LOAD_TESTS")).runTests();
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.