php-src/ext/posix/tests/posix_errno_variation2.phpt
2009-08-26 17:17:58 +00:00

30 lines
612 B
PHP

--TEST--
Test function posix_errno() by calling it with its expected arguments
--CREDITS--
Morten Amundsen mor10am@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
--SKIPIF--
<?php
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
?>
--FILE--
<?php
echo "*** Test by calling function with pid error ***\n";
$pid = 10000;
do {
$pid += 1;
$result = shell_exec("ps -p " . $pid);
} while (strstr($pid, $result));
posix_kill($pid, SIGKILL);
var_dump(posix_errno());
?>
--EXPECTF--
*** Test by calling function with pid error ***
int(3)