Skip to content

Commit 39715f3

Browse files
committedJul 11, 2022
8287902: UnreadableRB case in MissingResourceCauseTest is not working reliably on Windows
Backport-of: 975316e
1 parent 62fbc3f commit 39715f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ public static void main(String[] args) {
3434
callGetBundle("PrivateConstructorRB", IllegalAccessException.class);
3535
callGetBundle("AbstractRB", InstantiationException.class);
3636
callGetBundle("BadStaticInitRB", ExceptionInInitializerError.class);
37-
callGetBundle("UnreadableRB", IOException.class);
37+
if (!System.getProperty("os.name").toLowerCase().startsWith("win")) {
38+
callGetBundle("UnreadableRB", IOException.class);
39+
}
3840
callGetBundle("NoNoArgConstructorRB", InstantiationException.class);
3941
}
4042

0 commit comments

Comments
 (0)
Please sign in to comment.