Index: run-tests.php =================================================================== RCS file: /repository/php-src/run-tests.php,v retrieving revision 1.119.2.35 diff -u -r1.119.2.35 run-tests.php --- run-tests.php 27 Jul 2003 16:59:04 -0000 1.119.2.35 +++ run-tests.php 19 Feb 2004 21:41:04 -0000 @@ -232,11 +232,11 @@ function find_files($dir,$is_ext_dir=FALSE,$ignore=FALSE) { - global $test_files, $exts_to_test, $ignored_by_ext, $exts_skipped, $exts_tested; + global $test_files, $exts_to_test, $ignored_by_ext, $exts_skipped, $exts_tested, $argv; $o = opendir($dir) or error("cannot open directory: $dir"); while (($name = readdir($o)) !== FALSE) { - if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', '..', 'CVS'))) { + if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', '..', 'CVS')) && !in_array('-l', $argv)) { $skip_ext = ($is_ext_dir && !in_array($name, $exts_to_test)); if ($skip_ext) { $exts_skipped++;