
| Path : /usr/src/php/ext/pcntl/tests/ |
| Current File : //usr/src/php/ext/pcntl/tests/pcntl_get_last_error.phpt |
--TEST--
Test pcntl_get_last_error()
--SKIPIF--
<?php
if (!extension_loaded("pcntl")) print "skip";
?>
--FILE--
<?php
var_dump(pcntl_get_last_error());
$pid = pcntl_wait($status);
var_dump($pid);
var_dump(pcntl_get_last_error() == PCNTL_ECHILD);
?>
--EXPECT--
int(0)
int(-1)
bool(true)