Skip newly added test on 32bit platforms

That bug didn't affect 32bit platforms, and besides, it is rather
unlikely that allocating a 2GB string works on such platforms.
This commit is contained in:
Christoph M. Becker 2022-12-19 15:56:56 +01:00
parent 05c35137cd
commit cf5dac07d2
No known key found for this signature in database
GPG Key ID: D66C9593118BCCB6

View File

@ -3,6 +3,7 @@ Bug #81740 (PDO::quote() may return unquoted string)
--SKIPIF--
<?php
if (!extension_loaded('pdo_sqlite')) print 'skip not loaded';
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
?>
--INI--