mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
b7d073d910
commit
899e41efd5
@ -83,6 +83,9 @@ class MemoryLimitTest extends SapphireTest {
|
|||||||
// see http://www.hardened-php.net/suhosin/configuration.html#suhosin.memory_limit
|
// see http://www.hardened-php.net/suhosin/configuration.html#suhosin.memory_limit
|
||||||
if(in_array('suhosin', $exts)) return false;
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user