mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
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:
parent
497e557632
commit
02c2af7249
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user