diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-10-21 10:23:31 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-10-21 10:23:31 +0000 |
commit | a26a849bb3dbd85f19f12d5bd074f35ce2070b25 (patch) | |
tree | ec9086b11618e3db619b3b215632593b8937975a | |
parent | cd410cbf9ff64bcad8e8f013a04e383a7c156345 (diff) | |
download | php-git-a26a849bb3dbd85f19f12d5bd074f35ce2070b25.tar.gz |
Fixed typo.
-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 2185480126..2304f69c0d 100755 --- a/run-tests.php +++ b/run-tests.php @@ -435,7 +435,7 @@ TEST $file @unlink($tmp_skipif); if (ereg("^skip", trim($output))){ echo "SKIP $tested"; - $reason = (ereg("^skip[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE; + $reason = (ereg("^skip[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE; if ($reason) { echo " (reason: $reason)\n"; } else { |