new RuntimePermission("getenv." + a_variable)};
Permission[] readNonVariable = new Permission[] {
new RuntimePermission("getenv." + not_a_variable)};
Permission[] readWriteAllProperties = new Permission[] {
new PropertyPermission("*", "read,write")};
Permission[] readProperty = new Permission[] {
new PropertyPermission(a_property, "read")};
Permission[] readNonProperty = new Permission[] {
new PropertyPermission(not_a_property, "read")};
Permission[] setIO = new Permission[] {
new RuntimePermission("setIO")};
Permission[] writeProperty = new Permission[] {
new PropertyPermission(a_property, "write")};
Permission[] writeNonProperty = new Permission[] {
new PropertyPermission(not_a_property, "write")};
Permission[] setSecurityManager = new Permission[] {
new RuntimePermission("setSecurityManager")};
TestSecurityManager sm = new TestSecurityManager(harness);