-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: None
-
Component/s: tools
-
b143
-
x86
-
windows_2012
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-8378939 | 8u501 | Vishwas Garg | P3 | Resolved | Fixed | master |
This test creates files in /cygdrive/c/temp with names like javac1052993135763659962.tmp,
javac1053620319729702391.tmp
and so on...
It is the only place in the test code for jdk or langtools where I find the pattern 'javac.*\.tmp':
cat -n jdk/test/tools/pack200/Utils.java
[...]
97 File tmpFile = File.createTempFile("javac", ".tmp");
There is a cleanup() method implemented at lines 192 ... 214 but it does not mention the .tmp extension.
Or, consider adding tmpFile.deleteOnExit() after line 97
javac1053620319729702391.tmp
and so on...
It is the only place in the test code for jdk or langtools where I find the pattern 'javac.*\.tmp':
cat -n jdk/test/tools/pack200/Utils.java
[...]
97 File tmpFile = File.createTempFile("javac", ".tmp");
There is a cleanup() method implemented at lines 192 ... 214 but it does not mention the .tmp extension.
Or, consider adding tmpFile.deleteOnExit() after line 97
- backported by
-
JDK-8378939 tools/pack200/Utils.java should clean up javac*.tmp files
-
- Resolved
-