MINOR: Don't run memory limit tests in safe mode, (from r106156)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112523 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-10-15 02:58:39 +00:00
parent 497e557632
commit 02c2af7249

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;
}