# HG changeset patch # User Bernhard Urban # Date 1412264638 25200 # Node ID 3c39e028b9315fc7742f1d779cab2a9d3ff24bf7 # Parent 57b6965524a23889ac340f62b9fb690dbe57d07d mx: convert path for unittest file on cygwin diff -r 57b6965524a2 -r 3c39e028b931 mx/mx_graal.py --- 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)