diff options
author | Pierre Joye <pajoye@php.net> | 2008-11-16 23:22:43 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-11-16 23:22:43 +0000 |
commit | df3dc8d9749dcb8d1ab91d2a462a67ea369543f8 (patch) | |
tree | bd80fc4abc10b66d878f3155414b3078a5bc1bba /ext | |
parent | c25d835bbe04982eda6b567a8d2c8dd78c1e285a (diff) | |
download | php-git-df3dc8d9749dcb8d1ab91d2a462a67ea369543f8.tar.gz |
- MFB: skip if pcntl is not present
Diffstat (limited to 'ext')
-rw-r--r-- | ext/openssl/tests/bug46127.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/openssl/tests/bug46127.phpt b/ext/openssl/tests/bug46127.phpt index e4e4007b9a..c176ff8e1d 100644 --- a/ext/openssl/tests/bug46127.phpt +++ b/ext/openssl/tests/bug46127.phpt @@ -2,7 +2,8 @@ openssl_sign/verify: accept different algos --SKIPIF-- <?php -if (!extension_loaded("openssl")) die("skip"); +if (!extension_loaded("openssl")) die("skip, openssl required"); +if (!extension_loaded("pcntl")) die("skip, pcntl required"); if (OPENSSL_VERSION_NUMBER < 0x009070af) die("skip"); ?> --FILE-- |