We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48ded4 commit 0a4f89bCopy full SHA for 0a4f89b
ext/openssl/tests/029.phpt
@@ -4,6 +4,7 @@ openssl_pkey_new() with EC key
4
<?php
5
if (!extension_loaded("openssl")) die("skip");
6
if (!defined("OPENSSL_KEYTYPE_EC")) die("skip no EC available");
7
+if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
8
?>
9
--FILE--
10
ext/openssl/tests/ecc.phpt
@@ -1,7 +1,10 @@
1
--TEST--
2
openssl_*() with OPENSSL_KEYTYPE_EC
3
--SKIPIF--
-<?php if (!extension_loaded("openssl") && !defined("OPENSSL_KEYTYPE_EC")) print "skip"; ?>
+<?php
+if (!extension_loaded("openssl") && !defined("OPENSSL_KEYTYPE_EC")) print "skip";
+?>
$args = array(
0 commit comments