diff --git a/test/jdk/java/io/File/createTempFile/SpecialTempFile.java b/test/jdk/java/io/File/createTempFile/SpecialTempFile.java index 5cba3ff8796..532d3389da3 100644 --- a/test/jdk/java/io/File/createTempFile/SpecialTempFile.java +++ b/test/jdk/java/io/File/createTempFile/SpecialTempFile.java @@ -42,8 +42,12 @@ import jdk.internal.util.StaticProperty; public class SpecialTempFile { + // + // If exceptionExpected == null, then any IOException thrown by + // File.createTempFile is ignored. + // private static void test(String name, String[] prefix, String[] suffix, - boolean exceptionExpected) throws IOException + Boolean exceptionExpected) throws IOException { if (prefix == null || suffix == null || prefix.length != suffix.length) @@ -70,19 +74,21 @@ private static void test(String name, String[] prefix, String[] suffix, f = File.createTempFile(prefix[i], suffix[i], tempDir.toFile()); } catch (IOException e) { - if (exceptionExpected) { - if (e.getMessage().startsWith(exceptionMsg)) - exceptionThrown = true; - else - System.out.println("Wrong error message:" + - e.getMessage()); - } else { - throw e; + if (exceptionExpected != null) { + if (exceptionExpected) { + if (e.getMessage().startsWith(exceptionMsg)) + exceptionThrown = true; + else + System.out.println("Wrong error message:" + + e.getMessage()); + } else { + throw e; + } + + if (exceptionExpected && (!exceptionThrown || f != null)) + throw new RuntimeException("IOException expected"); } } - - if (exceptionExpected && (!exceptionThrown || f != null)) - throw new RuntimeException("IOException is expected"); } } } @@ -115,5 +121,12 @@ public static void main(String[] args) throws Exception { !(System.getProperty("os.name").matches("^.*[11|2025]$") || new OSVersion(10, 0).compareTo(OSVersion.current()) > 0); test("ReservedName", resvPre, resvSuf, exceptionExpected); + + System.out.println("OS name: " + System.getProperty("os.name") + "\n" + + "OS version: " + OSVersion.current()); + + // Here the test is for whether File.createTempFile hangs, so whether + // an exception is thrown is ignored: expectedException == null + test("ReservedName", resvPre, resvSuf, null); } }