1 /*
   2  * Security policy used by the FindClassSecurityManager test.
   3  * Must allow file reads so that jtreg itself can run, and getting class loaders.
   4  */
   5 
   6 grant {
   7   permission java.io.FilePermission "*", "read";
   8   permission java.lang.RuntimePermission "getClassLoader";
   9 };