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 9f33c58 commit b8db432Copy full SHA for b8db432
tests/utils/skipif.php
@@ -459,6 +459,10 @@ function skip_if_crypt_shared()
459
460
function skip_if_no_crypt_shared()
461
{
462
+ if (PHP_INT_SIZE !== 8) {
463
+ exit('skip crypt_shared is only available on 64-bit systems');
464
+ }
465
+
466
// Intentionally consider empty values for CRYPT_SHARED_LIB_PATH
467
if ( ! getenv('CRYPT_SHARED_LIB_PATH')) {
468
exit('skip crypt_shared is not available');
0 commit comments