changeset 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 57b6965524a2
children 95b879bdce67 fa821ca2611a
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)