tony2001 Wed May 17 10:12:44 2006 UTC Modified files: /php-src/ext/pdo/tests pdo_014.phpt pdo_031.phpt Log: fix skip reason http://cvs.php.net/viewcvs.cgi/php-src/ext/pdo/tests/pdo_014.phpt?r1=1.9&r2=1.10&diff_format=u Index: php-src/ext/pdo/tests/pdo_014.phpt diff -u php-src/ext/pdo/tests/pdo_014.phpt:1.9 php-src/ext/pdo/tests/pdo_014.phpt:1.10 --- php-src/ext/pdo/tests/pdo_014.phpt:1.9 Thu Oct 13 18:41:04 2005 +++ php-src/ext/pdo/tests/pdo_014.phpt Wed May 17 10:12:44 2006 @@ -3,7 +3,7 @@ --SKIPIF-- <?php # vim:ft=php if (!extension_loaded('pdo')) die('skip'); -if (!extension_loaded('SPL')) print 'skip SPL not available'; +if (!extension_loaded('SPL')) die('skip SPL not available'); if (!class_exists('IteratorIterator', false)) die('skip IteratorIterator class not present'); $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); http://cvs.php.net/viewcvs.cgi/php-src/ext/pdo/tests/pdo_031.phpt?r1=1.2&r2=1.3&diff_format=u Index: php-src/ext/pdo/tests/pdo_031.phpt diff -u php-src/ext/pdo/tests/pdo_031.phpt:1.2 php-src/ext/pdo/tests/pdo_031.phpt:1.3 --- php-src/ext/pdo/tests/pdo_031.phpt:1.2 Thu Oct 13 19:48:07 2005 +++ php-src/ext/pdo/tests/pdo_031.phpt Wed May 17 10:12:44 2006 @@ -3,7 +3,7 @@ --SKIPIF-- <?php # vim:ft=php if (!extension_loaded('pdo')) die('skip'); -if (!extension_loaded('SPL')) print 'skip SPL not available'; +if (!extension_loaded('SPL')) die('skip SPL not available'); $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); require_once $dir . 'pdo_test.inc';
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php