# HG changeset patch # User Gilles Duboscq # Date 1356019619 -3600 # Node ID 76c9023ed4384185944cbf63ad0cd5b4b0d9242f # Parent 641f41d8342b34ffddef4129ac4c42a03f1e95d4 Remove now useless prefix arguments for jtt unittests diff -r 641f41d8342b -r 76c9023ed438 mx/commands.py --- a/mx/commands.py Thu Dec 20 17:06:34 2012 +0100 +++ b/mx/commands.py Thu Dec 20 17:06:59 2012 +0100 @@ -691,12 +691,6 @@ def harness(p, vmArgs, classes): prefixArgs = ['-XX:-BootstrapGraal', '-esa'] - if p.name.endswith('.jtt'): - prefixArgs = prefixArgs + [ - '-XX:CompileOnly=com/oracle/graal/jtt', - '-XX:CompileCommand=compileonly,java/lang/Object::', - '-XX:CompileCommand=quiet', - '-Xcomp'] vm(prefixArgs + vmArgs + ['-cp', mx.classpath(p.name), 'org.junit.runner.JUnitCore'] + classes) _run_tests(args, harness)