diff options
author | Jani Taskinen <jani@php.net> | 2009-12-11 07:34:06 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-12-11 07:34:06 +0000 |
commit | 03a47e9b03b70e711b7e0e557312d40e23dff12b (patch) | |
tree | ef6353ccccff33c27334168d690f9a6242f56ca1 /run-tests.php | |
parent | 1aebd220f86bd4da9803d9c40af68eb57b3e5b23 (diff) | |
download | php-git-03a47e9b03b70e711b7e0e557312d40e23dff12b.tar.gz |
- Fix problem with SKIPIF failing to skip in some cases (deprecated warnings f.e.)
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index d95476db0b..a5c374060f 100755 --- a/run-tests.php +++ b/run-tests.php @@ -1426,7 +1426,7 @@ TEST $file $env['USE_ZEND_ALLOC'] = '1'; } - $output = system_with_timeout("$extra $php $pass_options -q $ini_settings $test_skipif", $env); + $output = system_with_timeout("$extra $php $pass_options -q $ini_settings -d display_errors=0 $test_skipif", $env); if (!$cfg['keep']['skip']) { @unlink($test_skipif); |