diff options
author | Derick Rethans <derick@php.net> | 2003-01-18 13:53:25 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-01-18 13:53:25 +0000 |
commit | a50e9acd8ea8e18a502c429a24a032f30a76ddda (patch) | |
tree | 04a525d0a0003efe1efcf368b7fa6562cdeac3be | |
parent | 83e9f231827d19ece6c3be32ec6c8162db478fb4 (diff) | |
download | php-git-a50e9acd8ea8e18a502c429a24a032f30a76ddda.tar.gz |
- Skip test if the function to test is not available
#- Perhaps we need some infrastructure for this...
-rw-r--r-- | ext/standard/tests/general_functions/proc_open.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/tests/general_functions/proc_open.phpt b/ext/standard/tests/general_functions/proc_open.phpt index af275fe6bb..0cd08bd6b2 100644 --- a/ext/standard/tests/general_functions/proc_open.phpt +++ b/ext/standard/tests/general_functions/proc_open.phpt @@ -3,6 +3,7 @@ proc_open --SKIPIF-- <?php # vim:syn=php if (!is_executable("/bin/cat")) echo "skip"; +if (!function_exists("proc_open")) echo "skip proc_open() is not available"; ?> --POST-- --GET-- |