summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-07-22 16:41:41 -0300
committerGabriel Caruso <carusogabriel34@gmail.com>2018-07-22 16:41:41 -0300
commitc93aba042f8923de9d0078a769f14d8c13016476 (patch)
treec620c7bc6e22b8b92a628262c98fcbf3624e330f /ext/pdo_sqlite
parent8ca1f47a7a25f61fcc63313a771e6922e3258046 (diff)
downloadphp-git-c93aba042f8923de9d0078a769f14d8c13016476.tar.gz
Give a reason why the test was skipped
This will help us debug why a test was skipped in GCOV (http://gcov.php.net/viewer.php?version=PHP_HEAD&func=skip), and maybe put them to run again
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r--ext/pdo_sqlite/tests/bug_63916-2.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_sqlite/tests/bug_63916-2.phpt b/ext/pdo_sqlite/tests/bug_63916-2.phpt
index bc9bfc9c98..4535410b55 100644
--- a/ext/pdo_sqlite/tests/bug_63916-2.phpt
+++ b/ext/pdo_sqlite/tests/bug_63916-2.phpt
@@ -2,8 +2,8 @@
Bug #63916 PDO::PARAM_INT casts to 32bit int internally even on 64bit builds in pdo_sqlite
--SKIPIF--
<?php
-if (!extension_loaded('pdo_sqlite')) die('skip');
-if (PHP_INT_SIZE > 4) die('skip');
+if (!extension_loaded('pdo_sqlite')) die('skip pdo_sqlite extension not loaded');
+if (PHP_INT_SIZE > 4) die('skip 32-bit only');
?>
--FILE--
<?php