summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/bug_36428.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo/tests/bug_36428.phpt')
-rwxr-xr-xext/pdo/tests/bug_36428.phpt33
1 files changed, 0 insertions, 33 deletions
diff --git a/ext/pdo/tests/bug_36428.phpt b/ext/pdo/tests/bug_36428.phpt
deleted file mode 100755
index 6abba6bd7c..0000000000
--- a/ext/pdo/tests/bug_36428.phpt
+++ /dev/null
@@ -1,33 +0,0 @@
---TEST--
-PDO Common: PHP Bug #36428: Incorrect error message for PDO::fetchAll
---SKIPIF--
-<?php # vim:ft=php
-if (!extension_loaded('pdo')) die('skip');
-if (!extension_loaded('simplexml')) die('skip SimpleXML not loaded');
-$dir = getenv('REDIR_TEST_DIR');
-if (false == $dir) die('skip no driver');
-require_once $dir . 'pdo_test.inc';
-PDOTest::skip();
-?>
---FILE--
-<?php
-if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.dirname(__FILE__) . '/../../pdo/tests/');
-require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
-
-$db = PDOTest::factory();
-$db->exec("CREATE TABLE test (a VARCHAR(10))");
-$db->exec("INSERT INTO test (a) VALUES ('xyz')");
-$res = $db->query("SELECT a FROM test");
-var_dump($res->fetchAll(PDO::FETCH_CLASS|PDO::FETCH_PROPS_LATE, 'SimpleXMLElement', array('<root/>')));
-
-?>
-===DONE===
---EXPECTF--
-array(1) {
- [0]=>
- object(SimpleXMLElement)#%d (1) {
- ["a"]=>
- string(3) "xyz"
- }
-}
-===DONE===