Skip to content

Commit

Permalink
- MFB: skip if pcntl is not present
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Nov 16, 2008
1 parent c25d835 commit df3dc8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/openssl/tests/bug46127.phpt
Expand Up @@ -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--
Expand Down

0 comments on commit df3dc8d

Please sign in to comment.