summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2001-07-11 13:19:07 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2001-07-11 13:19:07 +0000
commit800b8633103cba6345af136c809982d02406fb1c (patch)
tree6db79e9fce8046b7a26a7378f2d97da265661227 /run-tests.php
parent0ef0f8e32bd509161a5113081f2137cd11313f3f (diff)
downloadphp-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-xrun-tests.php2
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);