ru_php/ext/posix/tests/posix_getppid_basic.phpt

20 lines
282 B
PHP

--TEST--
Test posix_getppid() function : basic functionality
--EXTENSIONS--
posix
--FILE--
<?php
echo "Basic test of POSIX getppid function\n";
$ppid = posix_getppid();
var_dump($ppid);
?>
===DONE====
--EXPECTF--
Basic test of POSIX getppid function
int(%d)
===DONE====