# HG changeset patch # User Gilles Duboscq # Date 1337092015 -7200 # Node ID 206df7b3e022c742ff6167ff23b14c524dad56d7 # Parent fc3efebea409ee372d7e969ac45cc46759f2a5d0 better compile commands for JTTs (compile all methods from jtt except run* methods) diff -r fc3efebea409 -r 206df7b3e022 mx/commands.py --- a/mx/commands.py Tue May 15 16:26:07 2012 +0200 +++ b/mx/commands.py Tue May 15 16:26:55 2012 +0200 @@ -676,7 +676,7 @@ if len(neg) != 0: classes = [c for c in classes if not containsAny(c, neg)] - vm(['-XX:-BootstrapGraal', '-XX:CompileOnly=::test', '-Xcomp', '-esa'] + vmArgs + ['-cp', mx.classpath(proj), 'org.junit.runner.JUnitCore'] + classes) + vm(['-XX:-BootstrapGraal', '-XX:CompileOnly=com/oracle/graal/jtt', '-XX:CompileCommand=exclude,com/oracle/graal/jtt*.run*', '-XX:CompileCommand=quiet', '-Xcomp', '-esa'] + vmArgs + ['-cp', mx.classpath(proj), 'org.junit.runner.JUnitCore'] + classes) def buildvms(args): """build one or more VMs in various configurations"""