< prev index next >

test/runtime/modules/AccessCheck/DiffCL_ExpUnqual.java

Print this page




  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * @test
  28  * @summary Test that if module m1 can read module m2, and package p2 in m2 is
  29  *          exported unqualifiedly, then class p1.c1 in m1 can read p2.c2 in m2.
  30  * @modules java.base/jdk.internal.misc
  31  * @library /testlibrary /test/lib
  32  * @compile myloaders/MyDiffClassLoader.java
  33  * @compile p2/c2.java
  34  * @compile p1/c1.java
  35  * @build DiffCL_ExpUnqual
  36  * @run main/othervm -Xbootclasspath/a:. DiffCL_ExpUnqual
  37  */
  38 
  39 import static jdk.test.lib.Asserts.*;
  40 
  41 import java.lang.reflect.Layer;
  42 import java.lang.module.Configuration;
  43 import java.lang.module.ModuleDescriptor;
  44 import java.lang.module.ModuleFinder;
  45 import java.util.HashMap;
  46 import java.util.Map;
  47 import java.util.Set;
  48 import myloaders.MyDiffClassLoader;
  49 
  50 //
  51 // ClassLoader1 --> defines m1 --> packages p1
  52 // ClassLoader2 --> defines m2 --> packages p2
  53 //
  54 // m1 can read m2
  55 // package p2 in m2 is exported to m1




  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * @test
  28  * @summary Test that if module m1 can read module m2, and package p2 in m2 is
  29  *          exported unqualifiedly, then class p1.c1 in m1 can read p2.c2 in m2.
  30  * @modules java.base/jdk.internal.misc
  31  * @library /test/lib
  32  * @compile myloaders/MyDiffClassLoader.java
  33  * @compile p2/c2.java
  34  * @compile p1/c1.java

  35  * @run main/othervm -Xbootclasspath/a:. DiffCL_ExpUnqual
  36  */
  37 
  38 import static jdk.test.lib.Asserts.*;
  39 
  40 import java.lang.reflect.Layer;
  41 import java.lang.module.Configuration;
  42 import java.lang.module.ModuleDescriptor;
  43 import java.lang.module.ModuleFinder;
  44 import java.util.HashMap;
  45 import java.util.Map;
  46 import java.util.Set;
  47 import myloaders.MyDiffClassLoader;
  48 
  49 //
  50 // ClassLoader1 --> defines m1 --> packages p1
  51 // ClassLoader2 --> defines m2 --> packages p2
  52 //
  53 // m1 can read m2
  54 // package p2 in m2 is exported to m1


< prev index next >