# HG changeset patch # User naoto # Date 1492722575 25200 # Node ID 928d2d931b6698e2276cede1730aa43bb432fab4 # Parent 2a39971d67ab5ffe603841ccc89bf6fe012d52ce 8178823: Unable to initialize HijrahCalendar: Hijrah-umalqura when running with a security manager Reviewed-by: lancea, rriggs diff -r 2a39971d67ab -r 928d2d931b66 jdk/src/java.base/share/classes/java/time/chrono/HijrahChronology.java --- a/jdk/src/java.base/share/classes/java/time/chrono/HijrahChronology.java Thu Apr 20 11:40:57 2017 -0700 +++ b/jdk/src/java.base/share/classes/java/time/chrono/HijrahChronology.java Thu Apr 20 14:09:35 2017 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -813,8 +813,9 @@ private Properties readConfigProperties(final String calendarType) throws Exception { String resourceName = RESOURCE_PREFIX + calendarType + RESOURCE_SUFFIX; PrivilegedAction<InputStream> getResourceAction = () -> HijrahChronology.class.getResourceAsStream(resourceName); - FilePermission perm = new FilePermission("<<ALL FILES>>", "read"); - try (InputStream is = AccessController.doPrivileged(getResourceAction, null, perm)) { + FilePermission perm1 = new FilePermission("<<ALL FILES>>", "read"); + RuntimePermission perm2 = new RuntimePermission("accessSystemModules"); + try (InputStream is = AccessController.doPrivileged(getResourceAction, null, perm1, perm2)) { if (is == null) { throw new RuntimeException("Hijrah calendar resource not found: /java/time/chrono/" + resourceName); } diff -r 2a39971d67ab -r 928d2d931b66 jdk/test/java/time/TEST.properties --- a/jdk/test/java/time/TEST.properties Thu Apr 20 11:40:57 2017 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -# java.time tests use TestNG -TestNG.dirs = . -othervm.dirs = tck/java/time/chrono test/java/time/chrono test/java/time/format -lib.dirs = ../../lib/testlibrary -lib.build = jdk.testlibrary.RandomFactory diff -r 2a39971d67ab -r 928d2d931b66 jdk/test/java/time/nontestng/java/time/chrono/Bug8178823.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/test/java/time/nontestng/java/time/chrono/Bug8178823.java Thu Apr 20 14:09:35 2017 -0700 @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +package nontestng.java.time.chrono; + +import java.time.chrono.HijrahChronology; + +/* @test + * @bug 8178823 + * @build Bug8178823 + * @run main/othervm/policy=bug8178823.policy -Djava.security.manager nontestng.java.time.chrono.Bug8178823 + * @summary Test Hijrah calendar is initialized with the security manager. + */ +public class Bug8178823 { + public static void main(String[] args) { + HijrahChronology.INSTANCE.isLeapYear(2017); + } +} diff -r 2a39971d67ab -r 928d2d931b66 jdk/test/java/time/nontestng/java/time/chrono/bug8178823.policy --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/test/java/time/nontestng/java/time/chrono/bug8178823.policy Thu Apr 20 14:09:35 2017 -0700 @@ -0,0 +1,1 @@ +// Empty policy file for Bug8178823 diff -r 2a39971d67ab -r 928d2d931b66 jdk/test/java/time/tck/TEST.properties --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/test/java/time/tck/TEST.properties Thu Apr 20 14:09:35 2017 -0700 @@ -0,0 +1,5 @@ +# java.time tests use TestNG +TestNG.dirs = .. +othervm.dirs = java/time/chrono +lib.dirs = ../../../lib/testlibrary +lib.build = jdk.testlibrary.RandomFactory diff -r 2a39971d67ab -r 928d2d931b66 jdk/test/java/time/test/TEST.properties --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/test/java/time/test/TEST.properties Thu Apr 20 14:09:35 2017 -0700 @@ -0,0 +1,5 @@ +# java.time tests use TestNG +TestNG.dirs = .. +othervm.dirs = java/time/chrono java/time/format +lib.dirs = ../../../lib/testlibrary +lib.build = jdk.testlibrary.RandomFactory