I've just installed phpunit via pear in a mac osx 10.7 and everything works fine except I got memory limit errors (xdebug enabled for reports).
I tried to add the -d memory_limit=512M
parameter to phpunit but it is not applying because, on the very first error, I added var_dump(ini_get('memory_limit')); exit;
and it prints string(3) "32M"
So, why is it not being applied?
Besides that, if I run
php -d memory_limit=256M -r "echo ini_get('memory_limit');"
it echoes "256M"
Is it possible that phpunit is not executing same php?
ini_set('memory_limit', '512M')
? – Abutmentphpunit -dmemory_limit=512M
? – Abutment-d
? – Sechrist