We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62fbc3f commit 39715f3Copy full SHA for 39715f3
test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.java
@@ -34,7 +34,9 @@ public static void main(String[] args) {
34
callGetBundle("PrivateConstructorRB", IllegalAccessException.class);
35
callGetBundle("AbstractRB", InstantiationException.class);
36
callGetBundle("BadStaticInitRB", ExceptionInInitializerError.class);
37
- callGetBundle("UnreadableRB", IOException.class);
+ if (!System.getProperty("os.name").toLowerCase().startsWith("win")) {
38
+ callGetBundle("UnreadableRB", IOException.class);
39
+ }
40
callGetBundle("NoNoArgConstructorRB", InstantiationException.class);
41
}
42
0 commit comments