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 | fc622cadee7bbf7356b9a64c4d8cd846b13d2bd4 (patch) | |
tree | 306db77f049ba2b80a99b9754926104aa5f39244 /run-tests.php | |
parent | 46c695ee992ba9b09d9f9ed8fc3af0ab1a2f113b (diff) | |
download | php-git-fc622cadee7bbf7356b9a64c4d8cd846b13d2bd4.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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/run-tests.php b/run-tests.php index 1db1794c85..a5c374060f 100755 --- a/run-tests.php +++ b/run-tests.php @@ -1140,7 +1140,6 @@ function run_test($php, $file, $env) global $leak_check, $temp_source, $temp_target, $cfg, $environment; global $no_clean; global $valgrind_version; - $temp_filenames = null; $org_file = $file; @@ -1427,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); |