diff options
Diffstat (limited to 'ext/sqlite/tests')
-rw-r--r-- | ext/sqlite/tests/bug26911.phpt | 2 | ||||
-rwxr-xr-x | ext/sqlite/tests/sqlite_oo_029.phpt | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/sqlite/tests/bug26911.phpt b/ext/sqlite/tests/bug26911.phpt index e81aeae763..74c2167722 100644 --- a/ext/sqlite/tests/bug26911.phpt +++ b/ext/sqlite/tests/bug26911.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #26911 (crash when fetching data from empty queries) +--SKIPIF-- +<?php if (!extension_loaded("sqlite")) print "skip"; ?> --FILE-- <?php $db = sqlite_open(":memory:"); diff --git a/ext/sqlite/tests/sqlite_oo_029.phpt b/ext/sqlite/tests/sqlite_oo_029.phpt index 23a819295a..e86efc9187 100755 --- a/ext/sqlite/tests/sqlite_oo_029.phpt +++ b/ext/sqlite/tests/sqlite_oo_029.phpt @@ -1,5 +1,9 @@ --TEST-- sqlite-oo: call method with $this +--SKIPIF-- +<?php # vim:ft=php +if (!extension_loaded("sqlite")) print "skip"; +?> --FILE-- <?php include "blankdb_oo.inc"; |