summaryrefslogtreecommitdiff
path: root/Makefile.global
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-06-16 18:58:04 +0000
committerMarcus Boerger <helly@php.net>2005-06-16 18:58:04 +0000
commite5df7fa8b2762500804580b37271a80c3bda44a7 (patch)
tree07ec216fb6a1768399644a85ec4a772976d55ab3 /Makefile.global
parentca16776087583ecb7b0f44893b3dca810422edb5 (diff)
downloadphp-git-e5df7fa8b2762500804580b37271a80c3bda44a7.tar.gz
- No more memory_limit for running tests
Diffstat (limited to 'Makefile.global')
-rw-r--r--Makefile.global2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.global b/Makefile.global
index a95150990b..160dc5b6a0 100644
--- a/Makefile.global
+++ b/Makefile.global
@@ -57,7 +57,7 @@ test:
TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
TEST_PHP_SRCDIR=$(top_srcdir) \
CC="$(CC)" \
- $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' $(top_srcdir)/run-tests.php $(TESTS); \
+ $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS); \
else \
echo "ERROR: Cannot run tests without CLI sapi."; \
fi