MINOR: Don't run memory limit tests in safe mode,

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@106156 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-06-03 04:24:08 +00:00
parent b7d073d910
commit 899e41efd5

View File

@ -82,6 +82,9 @@ class MemoryLimitTest extends SapphireTest {
$exts = get_loaded_extensions();
// see http://www.hardened-php.net/suhosin/configuration.html#suhosin.memory_limit
if(in_array('suhosin', $exts)) return false;
// We can't change memory limit in safe mode
if(strtolower(ini_get('safe_mode')) == 'on') return false;
return true;
}