diff options
author | Ryan Biesemeyer <yaauie@php.net> | 2011-07-20 21:13:03 +0000 |
---|---|---|
committer | Ryan Biesemeyer <yaauie@php.net> | 2011-07-20 21:13:03 +0000 |
commit | 386abb9f5aacfc26f487f879aa6d18ded33e670d (patch) | |
tree | 1628b9cdaa0ef76f5cf3ee9e221f3af7eccf7be5 /ext/openssl | |
parent | 08cab10dc90c22225bb6f7eecbff2be86db4807c (diff) | |
download | php-git-386abb9f5aacfc26f487f879aa6d18ded33e670d.tar.gz |
update test for bug #55169, fix skipif
Diffstat (limited to 'ext/openssl')
-rw-r--r-- | ext/openssl/tests/bug55169.phpt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/openssl/tests/bug55169.phpt b/ext/openssl/tests/bug55169.phpt index b18071080e..e45ac5b1f7 100644 --- a/ext/openssl/tests/bug55169.phpt +++ b/ext/openssl/tests/bug55169.phpt @@ -2,7 +2,9 @@ openssl_random_pseudo_bytes test
https://bugs.php.net/bug.php?id=55169
--SKIPIF--
-if(!extension_loaded('openssl')) echo 'skip - requires openssl extension'
+<?php
+if(!extension_loaded('openssl')) echo 'skip - requires openssl extension';
+?>
--FILE--
<?php
for ($i = -1; $i <= 4; $i++) {
|