if(SELinux.isSELinuxEnabled() == false)
return;
String mycon = SELinux.getContext();
boolean ret;
ret = SELinux.checkSELinuxAccess(mycon, mycon, "process", "fork");
assertEquals(ret,"true");
ret = SELinux.checkSELinuxAccess(mycon, mycon, "memprotect", "mmap_zero");
assertEquals(ret,"true");