blob: 7bf9d7a99c19f8e4d017fc33719656874247ff51 [file] [log] [blame]
/*
* 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";
};