Skip to content

Commit cf5dac0

Browse files
committed
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.
1 parent 05c3513 commit cf5dac0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ext/pdo_sqlite/tests/bug81740.phpt

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

0 commit comments

Comments
 (0)