summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-07-22 19:53:00 +0000
committerFelipe Pena <felipe@php.net>2008-07-22 19:53:00 +0000
commitc5062c2a1b311a056f581aab322590c11108311a (patch)
treec8c7d2421e71d30b83acac9f81c6db45e72a1659 /run-tests.php
parentbeae9faca0444f431b6b702814bb1a80c57b5bf2 (diff)
downloadphp-git-c5062c2a1b311a056f581aab322590c11108311a.tar.gz
- The error level must be E_ALL | E_STRICT.
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 395f5f9032..ad73e0db25 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -189,7 +189,7 @@ $ini_overwrites = array(
'safe_mode=0',
'disable_functions=',
'output_buffering=Off',
- 'error_reporting=' . ((PHP_MAJOR_VERSION == 5) ? '32767' : '30719'),
+ 'error_reporting=' . (E_ALL | E_STRICT),
'display_errors=1',
'display_startup_errors=1',
'log_errors=0',