php-src/ext/standard/tests/general_functions/proc_open02.phpt

73 lines
1.1 KiB
Plaintext
Raw Normal View History

--TEST--
proc_open
--SKIPIF--
<?php
if (!is_executable('/bin/sleep')) echo 'skip no sleep';
2007-02-21 16:25:37 +00:00
if (!is_executable('/usr/bin/nohup')) echo 'skip no nohup';
?>
--FILE--
<?php
$ds = array(array('pipe', 'r'));
$cat = proc_open(
2007-02-21 16:25:37 +00:00
'/usr/bin/nohup /bin/sleep 50',
$ds,
$pipes
);
sleep(1); // let the OS run the nohup process before sending the signal
var_dump(proc_terminate($cat, 1)); // send a SIGHUP
sleep(1);
var_dump(proc_get_status($cat));
var_dump(proc_terminate($cat)); // now really quit it
sleep(1);
var_dump(proc_get_status($cat));
proc_close($cat);
echo "Done!\n";
?>
--EXPECTF--
bool(true)
array(8) {
["command"]=>
2007-02-21 16:25:37 +00:00
string(28) "/usr/bin/nohup /bin/sleep 50"
["pid"]=>
int(%d)
["running"]=>
bool(true)
["signaled"]=>
bool(false)
["stopped"]=>
bool(false)
["exitcode"]=>
int(-1)
["termsig"]=>
int(0)
["stopsig"]=>
int(0)
}
bool(true)
array(8) {
["command"]=>
2007-02-21 16:25:37 +00:00
string(28) "/usr/bin/nohup /bin/sleep 50"
["pid"]=>
int(%d)
["running"]=>
bool(false)
["signaled"]=>
bool(true)
["stopped"]=>
bool(false)
["exitcode"]=>
int(-1)
["termsig"]=>
int(15)
["stopsig"]=>
int(0)
}
Done!