diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2009-11-23 21:24:20 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2009-11-23 21:24:20 +0000 |
commit | eab96b63ca5f3d31c1b2a53152984c104bbdb504 (patch) | |
tree | 7eeb6bd2dfb4b6ccfbb7f50b634c1ef6412a6e52 /ext/posix | |
parent | daf47a85196f9bc07f804b65a0ed468ed22bb360 (diff) | |
download | php-git-eab96b63ca5f3d31c1b2a53152984c104bbdb504.tar.gz |
Need the PCNTL extension loaded since that is where the SIGKILL constant comes from
Diffstat (limited to 'ext/posix')
-rw-r--r-- | ext/posix/tests/posix_errno_variation2.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/posix/tests/posix_errno_variation2.phpt b/ext/posix/tests/posix_errno_variation2.phpt index f463d78759..ad3aa311ea 100644 --- a/ext/posix/tests/posix_errno_variation2.phpt +++ b/ext/posix/tests/posix_errno_variation2.phpt @@ -7,6 +7,7 @@ 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 |