diff mx/mx_graal.py @ 17320:3c39e028b931

mx: convert path for unittest file on cygwin
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 02 Oct 2014 08:43:58 -0700
parents c75bb9cd1994
children 95b879bdce67
line wrap: on
line diff
--- a/mx/mx_graal.py	Thu Oct 02 06:35:56 2014 -0700
+++ b/mx/mx_graal.py	Thu Oct 02 08:43:58 2014 -0700
@@ -1180,7 +1180,7 @@
             # replaying the VM execution in a native debugger (e.g., gdb).
             vm(prefixArgs + vmArgs + ['-cp', cp, 'com.oracle.graal.test.GraalJUnitCore'] + coreArgs + testclasses)
         else:
-            vm(prefixArgs + vmArgs + ['-cp', cp, 'com.oracle.graal.test.GraalJUnitCore'] + coreArgs + ['@' + testfile])
+            vm(prefixArgs + vmArgs + ['-cp', cp, 'com.oracle.graal.test.GraalJUnitCore'] + coreArgs + ['@' + mx._cygpathU2W(testfile)])
 
     try:
         _run_tests(args, harness, annotations, testfile, blacklist, whitelist, regex)