diff options
author | Nuno Lopes <nlopess@php.net> | 2008-07-08 18:18:08 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2008-07-08 18:18:08 +0000 |
commit | ae8fcea231bf980136f34c9d54ab81eb8ca984e8 (patch) | |
tree | ab2d2d80036444e222c903ef2a94416967a2ee1e /run-tests.php | |
parent | 484d6b21c08a795c74ebde269850cb9b668e5044 (diff) | |
download | php-git-ae8fcea231bf980136f34c9d54ab81eb8ca984e8.tar.gz |
increase pcre.backtrack_limit so that the phpinfo.phpt test passes on my computer.
we should really consider increase the default of this limit.. (but not the recursion one though)
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run-tests.php b/run-tests.php index 00cc6189d6..65842ea5f1 100755 --- a/run-tests.php +++ b/run-tests.php @@ -76,6 +76,8 @@ putenv('SSH_CONNECTION=deleted'); $cwd = getcwd(); set_time_limit(0); +ini_set('pcre.backtrack_limit', PHP_INT_MAX); + $valgrind_version = 0; $valgrind_header = ''; |