- Skip test if the function to test is not available

#- Perhaps we need some infrastructure for this...
This commit is contained in:
Derick Rethans 2003-01-18 13:53:25 +00:00
parent 83e9f23182
commit a50e9acd8e

View file

@ -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--