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 | 36c285e9ebbac6dcf6825337fb63b7fa92ac080f (patch) | |
tree | 939930fa050d5d28cf132f20c309de072aa9e7e3 | |
parent | 80314eb721f2f6f09c06b7b6345f0d83c65b3e41 (diff) | |
download | php-git-36c285e9ebbac6dcf6825337fb63b7fa92ac080f.tar.gz |
Need the PCNTL extension loaded since that is where the SIGKILL constant comes from
-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 |