Add test for bug #61292, bug was fixed in -r323935

This commit is contained in:
Xinchen Hui 2012-03-06 06:24:50 +00:00
parent 1a1a8242c4
commit 02b3b616ce

View file

@ -0,0 +1,36 @@
--TEST--
Bug #61292 (Segfault while calling a method on an overloaded PDO object)
--SKIPIF--
<?php
if (!extension_loaded('pdo')) die('skip');
$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';
class Database_SQL extends PDO
{
function __construct()
{
$options = array(PDO::ATTR_PERSISTENT => TRUE);
parent::__construct(getenv("PDOTEST_DSN"), getenv("PDOTEST_USER"), getenv("PDOTEST_PASS"), $options);
}
var $bar = array();
public function foo()
{
var_dump($this->bar);
}
}
(new Database_SQL)->foo();
?>
--EXPECTF--
array(0) {
}