diff options
-rw-r--r-- | ext/posix/tests/posix_errno_variation2.phpt | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/ext/posix/tests/posix_errno_variation2.phpt b/ext/posix/tests/posix_errno_variation2.phpt index ff44b70cb6..6335fa5327 100644 --- a/ext/posix/tests/posix_errno_variation2.phpt +++ b/ext/posix/tests/posix_errno_variation2.phpt @@ -7,23 +7,14 @@ Francesco Fullone ff@ideato.it --SKIPIF-- <?php if(!extension_loaded("posix")) print "skip - POSIX extension not loaded"; - if(!extension_loaded("pcntl")) print "skip - PCNTL extension required"; ?> --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((2 ** 22) + 1, SIGKILL); -posix_kill($pid, SIGKILL); var_dump(posix_errno()); - ?> --EXPECT-- *** Test by calling function with pid error *** |