5d397eea9f
Reviewed-by: vromero
11 lines
305 B
Plaintext
11 lines
305 B
Plaintext
/*
|
|
* Security policy used by the FindClassSecurityManager and
|
|
* MethodTypeSecurityManager test.
|
|
* Must allow file reads so that jtreg itself can run, and getting class loaders.
|
|
*/
|
|
|
|
grant {
|
|
permission java.io.FilePermission "*", "read";
|
|
permission java.lang.RuntimePermission "getClassLoader";
|
|
};
|