-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
b08
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8366857 | 21.0.10-oracle | Aditya Bugadi | P4 | Resolved | Fixed | master |
JDK-8366855 | 17.0.18-oracle | Aditya Bugadi | P4 | Resolved | Fixed | master |
JDK-8366856 | 11.0.30-oracle | Aditya Bugadi | P4 | Resolved | Fixed | master |
JDK-8367071 | 8u481 | Aditya Bugadi | P4 | Resolved | Fixed | master |
// 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);
}
}
}
- backported by
-
JDK-8366855 [TEST] open/test/jdk/java/io/File/MaxPathLength.java Refactor extract method to encapsulate Windows specific test logic
-
- Resolved
-
-
JDK-8366856 [TEST] open/test/jdk/java/io/File/MaxPathLength.java Refactor extract method to encapsulate Windows specific test logic
-
- Resolved
-
-
JDK-8366857 [TEST] open/test/jdk/java/io/File/MaxPathLength.java Refactor extract method to encapsulate Windows specific test logic
-
- Resolved
-
-
JDK-8367071 [TEST] open/test/jdk/java/io/File/MaxPathLength.java Refactor extract method to encapsulate Windows specific test logic
-
- Resolved
-
- 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