diff mx/commands.py @ 7287:76c9023ed438

Remove now useless prefix arguments for jtt unittests
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 20 Dec 2012 17:06:59 +0100
parents c356cab093bc
children d1aa5ffac560
line wrap: on
line diff
--- 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::<init>',
-                '-XX:CompileCommand=quiet',
-                '-Xcomp']
         vm(prefixArgs + vmArgs + ['-cp', mx.classpath(p.name), 'org.junit.runner.JUnitCore'] + classes)
     _run_tests(args, harness)