Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8287902: UnreadableRB case in MissingResourceCauseTest is not working…
… reliably on Windows

Reviewed-by: naoto
  • Loading branch information
magicus committed Jun 10, 2022
1 parent 0901548 commit 975316e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -34,7 +34,9 @@ public static void main(String[] args) {
callGetBundle("PrivateConstructorRB", IllegalAccessException.class);
callGetBundle("AbstractRB", InstantiationException.class);
callGetBundle("BadStaticInitRB", ExceptionInInitializerError.class);
callGetBundle("UnreadableRB", IOException.class);
if (!System.getProperty("os.name").toLowerCase().startsWith("win")) {
callGetBundle("UnreadableRB", IOException.class);
}
callGetBundle("NoNoArgConstructorRB", InstantiationException.class);
}

Expand Down

0 comments on commit 975316e

Please sign in to comment.