diff options
author | Marcus Boerger <helly@php.net> | 2003-05-29 19:11:51 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-05-29 19:11:51 +0000 |
commit | 23e5004132856a9fab45947dada8776f99beb51d (patch) | |
tree | 46b01f2202e256a2c358222f0f63da2e2a709cc6 /run-tests.php | |
parent | 472cc5b9f3bc7dc942df16460af66f8c65a7b217 (diff) | |
download | php-git-23e5004132856a9fab45947dada8776f99beb51d.tar.gz |
Execute --SKIPIF-- like --FILE--
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 9be82f1f5e..46191527b7 100755 --- a/run-tests.php +++ b/run-tests.php @@ -688,7 +688,7 @@ TEST $file if (array_key_exists('SKIPIF', $section_text)) { if (trim($section_text['SKIPIF'])) { save_text($tmp_skipif, $section_text['SKIPIF']); - $output = `$php $info_params $tmp_skipif`; + $output = system_with_timeout("$php $info_params $tmp_skipif"); @unlink($tmp_skipif); if (eregi("^skip", trim($output))) { echo "SKIP $tested"; |