You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
971 B
17 lines
971 B
Test whether hidden API access flags are being enforced. The test is composed of
|
|
two JARs. The first (parent) defines methods and fields and the second (child)
|
|
tries to access them with reflection/JNI/MethodHandles or link against them.
|
|
Note that the first is compiled twice - once with and once without hidden access
|
|
flags.
|
|
|
|
The test then proceeds to exercise the following combinations of class loading:
|
|
(a) Both parent and child dex loaded with PathClassLoader, parent's class loader
|
|
is the child's class loader's parent. Access flags should not be enforced as
|
|
the parent does not belong to boot class path.
|
|
(b) Parent is appended to boot class path, child is loaded with PathClassLoader.
|
|
In this situation child should not be able to access hidden methods/fields
|
|
of the parent.
|
|
(c) Both parent and child are appended to boot class path. Restrictions should
|
|
not apply as hidden APIs are accessible within the boundaries of the boot
|
|
class path.
|