1/*
2 * security policy used by the test process
3 * must allow file reads so that jtreg itself can run
4 */
5
6grant {
7  // standard test activation permissions
8  permission java.io.FilePermission "*", "read";
9};
10