Browse Source

use /usr/bin/nohup instead

experimental/5.2-WITH_DRCP
Nuno Lopes 20 years ago
parent
commit
4f3150c350
  1. 8
      ext/standard/tests/general_functions/proc_open02.phpt

8
ext/standard/tests/general_functions/proc_open02.phpt

@ -3,14 +3,14 @@ proc_open
--SKIPIF--
<?php
if (!is_executable('/bin/sleep')) echo 'skip no sleep';
if (!is_executable('/bin/nohup')) echo 'skip no nohup';
if (!is_executable('/usr/bin/nohup')) echo 'skip no nohup';
?>
--FILE--
<?php
$ds = array(array('pipe', 'r'));
$cat = proc_open(
'/bin/nohup /bin/sleep 50',
'/usr/bin/nohup /bin/sleep 50',
$ds,
$pipes
);
@ -32,7 +32,7 @@ echo "Done!\n";
bool(true)
array(8) {
["command"]=>
string(24) "/bin/nohup /bin/sleep 50"
string(28) "/usr/bin/nohup /bin/sleep 50"
["pid"]=>
int(%d)
["running"]=>
@ -51,7 +51,7 @@ array(8) {
bool(true)
array(8) {
["command"]=>
string(24) "/bin/nohup /bin/sleep 50"
string(28) "/usr/bin/nohup /bin/sleep 50"
["pid"]=>
int(%d)
["running"]=>

Loading…
Cancel
Save