# HG changeset patch # User Josef Eisl # Date 1441798191 -7200 # Node ID 805e5bdb291bc38e87e532863ac3ad7108b2b9e6 # Parent bb887a437e5b172576f34ff92a304275c270521b mx microbench: disable JVMCI classloader. diff -r bb887a437e5b -r 805e5bdb291b mx.graal/mx_graal.py --- a/mx.graal/mx_graal.py Wed Sep 09 14:24:10 2015 +0200 +++ b/mx.graal/mx_graal.py Wed Sep 09 13:29:51 2015 +0200 @@ -144,6 +144,8 @@ def microbench(args): """run JMH microbenchmark projects""" vmArgs, jmhArgs = mx.extract_VM_args(args, useDoubleDash=True) + if isJVMCIEnabled(get_vm()) and '-XX:-UseJVMCIClassLoader' not in vmArgs: + vmArgs = ['-XX:-UseJVMCIClassLoader'] + vmArgs # look for -f in JMH arguments containsF = False