Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8252883: AccessDeniedException caused by delayed file deletion on Windows #2572

Closed
13 changes: 8 additions & 5 deletions test/jdk/java/util/logging/FileHandlerAccessTest.java
Original file line number Diff line number Diff line change
@@ -25,7 +25,6 @@

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.logging.FileHandler;
import java.util.logging.Level;
@@ -42,7 +41,7 @@
*/

public class FileHandlerAccessTest {
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
if (!(args.length == 2 || args.length == 1)) {
System.out.println("Usage error: expects java FileHandlerAccessTest [process/thread] <count>");
return;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah - sorry - since this is a test, instead of return you should probably throw an exception - e.g.:

throw new IllegalArgumentException("Usage error: expects java FileHandlerAccessTest [process/thread] <count>");

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done! Thanks Daniel

@@ -93,14 +92,18 @@ private static void accessProcess() {
while ((line = bufferedReader.readLine()) != null) {
System.out.println(name + "\t|" + line);
}
childProcess.waitFor();

int exitCode = childProcess.waitFor();
if (exitCode != 0) {
throw new RuntimeException("An error occured in the child process.");
}
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
if (childProcess != null){
if (childProcess != null) {
childProcess.destroy();
}
if (bufferedReader != null){
if (bufferedReader != null) {
try {
bufferedReader.close();
} catch (Exception ignored) {}