diff options
author | Marcus Boerger <helly@php.net> | 2005-03-13 22:35:34 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-03-13 22:35:34 +0000 |
commit | 7c4cd0422955dd09e9b4b5038e5a1a030b82d305 (patch) | |
tree | 8ae991a87875ccd133d7bd30f392c6d2280118e7 /ext/pdo_mysql/tests | |
parent | dd64e6dedebb81b90e284c6f908b25d827a77277 (diff) | |
download | php-git-7c4cd0422955dd09e9b4b5038e5a1a030b82d305.tar.gz |
- Update tests
Diffstat (limited to 'ext/pdo_mysql/tests')
-rwxr-xr-x | ext/pdo_mysql/tests/pdo_014.phpt | 1 | ||||
-rwxr-xr-x | ext/pdo_mysql/tests/pdo_018.phpt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/pdo_mysql/tests/pdo_014.phpt b/ext/pdo_mysql/tests/pdo_014.phpt index c268ad00d4..a702c93e7d 100755 --- a/ext/pdo_mysql/tests/pdo_014.phpt +++ b/ext/pdo_mysql/tests/pdo_014.phpt @@ -4,6 +4,7 @@ PDO_MySQL: PDOStatement and SPL Iterators <?php # vim:ft=php require_once('skipif.inc'); if (!extension_loaded('SPL')) die('skip SPL not available'); +if (!class_exists('IteratorIterator')) die ('skip Class IteratorIterator does not exist'); ?> --FILE-- <?php diff --git a/ext/pdo_mysql/tests/pdo_018.phpt b/ext/pdo_mysql/tests/pdo_018.phpt index 2a77a0a77c..2cc56bcb47 100755 --- a/ext/pdo_mysql/tests/pdo_018.phpt +++ b/ext/pdo_mysql/tests/pdo_018.phpt @@ -3,6 +3,7 @@ PDO_MySQL: PDO Unserializing --SKIPIF-- <?php # vim:ft=php require_once('skipif.inc'); +if (!interface_exists('Serializeable')) die ('skip Interface Serializeable does not exist'); ?> --FILE-- <?php |