RFR: All test targets, jdk/test/Makefile, fail on Windows
Chris Hegarty
chris.hegarty at oracle.com
Sun Nov 10 17:17:37 UTC 2013
Recent changes to jdk/test/Makefile, in TL, causes all test batches to
fail on Windows. I would like to propose a temporary measure to get the
tests running again. This will give us the time to come up with a better
longer term solution.
From what I can tell cygpath, with '-s', fails when the path does not
exist. At least on version 1.7.17 & 1.7.18. Trivially, I would like to
propose to remove the '-s', as a temporary measure to get the test
running again.
hg diff test/Makefile
diff -r 46982ca895b4 test/Makefile
--- a/test/Makefile Fri Nov 08 18:54:29 2013 +0000
+++ b/test/Makefile Sun Nov 10 10:34:39 2013 +0000
@@ -64,7 +64,7 @@ ifeq ($(UNAME_S), CYGWIN)
ifeq ($(UNAME_S), CYGWIN)
# Location of developer shared files
SLASH_JAVA = J:
- GETMIXEDPATH = cygpath -m -s
+ GETMIXEDPATH = cygpath -m
else
# Location of developer shared files
SLASH_JAVA = /java
-Chris.
More information about the core-libs-dev
mailing list