diff mxtool/mx.py @ 18116:c4f649042a7b

mx/unittest: fix cygwin path issue
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 16 Oct 2014 08:51:26 -0700
parents 83bbc0e5891a
children 1700d12ba0ad
line wrap: on
line diff
--- a/mxtool/mx.py	Thu Oct 16 17:07:38 2014 +0200
+++ b/mxtool/mx.py	Thu Oct 16 08:51:26 2014 -0700
@@ -1572,7 +1572,7 @@
     if includeBootClasspath:
         result = os.pathsep.join([java().bootclasspath(), result])
 
-    return _separatedCygpathU2W(result)
+    return result
 
 def classpath_walk(names=None, resolve=True, includeSelf=True, includeBootClasspath=False):
     """
@@ -2366,7 +2366,7 @@
         jdk = self.jdk
         outputDir = _cygpathU2W(self.outputDir)
         compliance = str(jdk.javaCompliance)
-        cp = classpath(self.proj.name, includeSelf=True)
+        cp = _separatedCygpathU2W(classpath(self.proj.name, includeSelf=True))
         toBeDeleted = [argfileName]
 
         try: