5b2c88e28a
Reviewed-by: jrose, psandoz, vlivanov
10 lines
271 B
Plaintext
10 lines
271 B
Plaintext
/*
|
|
* Security policy used by the FindClassSecurityManager 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";
|
|
};
|