diff mx/mx_graal.py @ 16314:f57cf459f5d3

[SPARC] Adding deoptimization handler foreign call LoadDataAddressOp emitting now absolute addresses. (May be improved in future) Removing epilogue baseclass/block end marking interface from LeaveCurrentStackFrameOp and LeaveDeoptimizedStackFrameOp to conform with the assertion in com.oracle.graal.lir.LIR.verifyBlock Implement LIRGenerator.emitDeoptimizationFetchUnrollInfoCall for SPARC Removing my changes for JUnit reporting from testrunner.
author Stefan Anzinger <stefan.anzinger@gmail.com>
date Sat, 31 May 2014 00:30:26 +0200
parents 151fe6b1e511
children e497100e1fbf
line wrap: on
line diff
--- a/mx/mx_graal.py	Fri May 30 15:09:09 2014 +0200
+++ b/mx/mx_graal.py	Sat May 31 00:30:26 2014 +0200
@@ -949,7 +949,7 @@
         for t in tests:
             found = False
             for c, p in candidates.iteritems():
-                if fnmatch.fnmatch(c, t):
+                if t in c:
                     found = True
                     classes.append(c)
                     projs.add(p.name)
@@ -979,7 +979,7 @@
     if testfile is None:
         (_, testfile) = tempfile.mkstemp(".testclasses", "graal")
         os.close(_)
-    corecp = mx.classpath(['com.oracle.graal.test', 'ant'])
+    corecp = mx.classpath(['com.oracle.graal.test'])
 
     if not exists(javaClass) or getmtime(javaClass) < getmtime(javaSource):
         subprocess.check_call([mx.java().javac, '-cp', corecp, '-d', mxdir, javaSource])