-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
b08
// test long paths on windows
// And these long pathes cannot be handled on Solaris and Mac platforms
*** REFACTOR extract method this code block to a method testLongPathOnWindows ***
if (isWindows) {
String name = fileName;
while (name.length() < MAX_LENGTH) {
testLongPath (20, name, false);
testLongPath (20, name, true);
name = getNextName(name);
}
}
}
private static void testLongPathOnWindows () throws Exception {
if (isWindows) {
String name = fileName;
while (name.length() < MAX_LENGTH) {
testLongPath (20, name, false);
testLongPath (20, name, true);
name = getNextName(name);
}
}
}
- relates to
-
JDK-8355444 [java.io] Use @requires tag instead of exiting based on "os.name" property value
-
- Resolved
-
- links to
-
Commit(master) openjdk/jdk/016694bf
-
Review(master) openjdk/jdk/26193