diff options
| author | Nuno Lopes <nlopess@php.net> | 2008-04-10 19:09:49 +0000 |
|---|---|---|
| committer | Nuno Lopes <nlopess@php.net> | 2008-04-10 19:09:49 +0000 |
| commit | 60d622bdb0ec5ed58ed67e945498e65facd9009c (patch) | |
| tree | 5921c991a01382c595273fd0774d9e33978fce77 | |
| parent | 63ca89735662e02f58765effca4a6a873343ff06 (diff) | |
| download | php-git-60d622bdb0ec5ed58ed67e945498e65facd9009c.tar.gz | |
MFB5.3: fix SKIPIF
| -rw-r--r-- | ext/pdo/tests/bug_43663.phpt | 3 | ||||
| -rw-r--r-- | ext/pdo/tests/bug_44159.phpt | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ext/pdo/tests/bug_43663.phpt b/ext/pdo/tests/bug_43663.phpt index 25af588bbe..2e903d788f 100644 --- a/ext/pdo/tests/bug_43663.phpt +++ b/ext/pdo/tests/bug_43663.phpt @@ -1,9 +1,8 @@ --TEST-- PDO Common: Bug #43663 (__call on classes derived from PDO) ---FILE-- --SKIPIF-- <?php # vim:ft=php -if (!extension_loaded('pdo')) die('skip'); +if (!extension_loaded('pdo_sqlite')) die('skip no pdo_sqlite'); ?> --FILE-- <?php diff --git a/ext/pdo/tests/bug_44159.phpt b/ext/pdo/tests/bug_44159.phpt index 57460826f7..db4da40139 100644 --- a/ext/pdo/tests/bug_44159.phpt +++ b/ext/pdo/tests/bug_44159.phpt @@ -1,5 +1,9 @@ --TEST-- Bug #44159 (Crash: $pdo->setAttribute(PDO::STATEMENT_ATTR_CLASS, NULL)) +--SKIPIF-- +<?php +if (!extension_loaded('pdo_sqlite')) die('skip no pdo_sqlite'); +?> --FILE-- <?php |
