diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-07-11 13:19:07 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-07-11 13:19:07 +0000 |
commit | 800b8633103cba6345af136c809982d02406fb1c (patch) | |
tree | 6db79e9fce8046b7a26a7378f2d97da265661227 /run-tests.php | |
parent | 0ef0f8e32bd509161a5113081f2137cd11313f3f (diff) | |
download | php-git-800b8633103cba6345af136c809982d02406fb1c.tar.gz |
once again, make test would not work right with error_reporting=E_ALL
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 71e6f4e835..f5014ebabf 100755 --- a/run-tests.php +++ b/run-tests.php @@ -304,7 +304,7 @@ function run_tests_in_dir($dir = '.') else $skipped_extensions[$mod_name]=TRUE; } - if ($ext_found!==FALSE) { + if (!isset($ext_found) or $ext_found!==FALSE) { dowriteln("%bRunning tests in $dir%B"); dowriteln("=================".str_repeat("=", strlen($dir))); sort($testfiles); |