summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2008-11-16 23:22:43 +0000
committerPierre Joye <pajoye@php.net>2008-11-16 23:22:43 +0000
commitdf3dc8d9749dcb8d1ab91d2a462a67ea369543f8 (patch)
treebd80fc4abc10b66d878f3155414b3078a5bc1bba /ext
parentc25d835bbe04982eda6b567a8d2c8dd78c1e285a (diff)
downloadphp-git-df3dc8d9749dcb8d1ab91d2a462a67ea369543f8.tar.gz
- MFB: skip if pcntl is not present
Diffstat (limited to 'ext')
-rw-r--r--ext/openssl/tests/bug46127.phpt3
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--