-
Bug
-
Resolution: Fixed
-
P4
-
10
-
b23
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8248243 | openjdk8u272 | Ajit Ghaisas | P4 | Resolved | Fixed | b01 |
JDK-8247458 | 8u271 | Sergey Bylokhov | P4 | Resolved | Fixed | b01 |
JDK-8251810 | emb-8u271 | Ajit Ghaisas | P4 | Resolved | Fixed | team |
AllowSearch.java creates an imageio*.tmp file in the default temp directory, but does not clean it up later.
cat -n jdk/test/javax/imageio/AllowSearch.java
[...]
49 File f = File.createTempFile("imageio", ".tmp");
A better approach would be to create temporary test files under the jtreg property user.dir instead, if it is defined.
During a jtreg run, user.dir has the value $PWD/JTwork/scratch
cat -n jdk/test/javax/imageio/AllowSearch.java
[...]
49 File f = File.createTempFile("imageio", ".tmp");
A better approach would be to create temporary test files under the jtreg property user.dir instead, if it is defined.
During a jtreg run, user.dir has the value $PWD/JTwork/scratch
- backported by
-
JDK-8247458 Better cleanup for javax/imageio/AllowSearch.java
- Resolved
-
JDK-8248243 Better cleanup for javax/imageio/AllowSearch.java
- Resolved
-
JDK-8251810 Better cleanup for javax/imageio/AllowSearch.java
- Resolved