jdk/test/java/lang/invoke/jtreg.security.policy
author jrose
Sat, 05 Oct 2013 05:30:38 -0700
changeset 20528 0b1e2130d3f7
parent 19804 83170920c07b
permissions -rw-r--r--
8001105: findVirtual of Object[].clone produces internal error Summary: Replicate JVM logic for access control that makes Object.clone appear public when applied to an array type. Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19804
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     1
/*
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     2
 * security policy used by the test process
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     3
 * must allow file reads so that jtreg itself can run
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     4
 */
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     5
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     6
grant {
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     7
  // standard test activation permissions
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     8
  permission java.io.FilePermission "*", "read";
83170920c07b 8008688: Make MethodHandleInfo public
rfield
parents:
diff changeset
     9
};