changeset 5410:206df7b3e022

better compile commands for JTTs (compile all methods from jtt except run* methods)
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 15 May 2012 16:26:55 +0200
parents fc3efebea409
children 128b3f574991
files mx/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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"""