mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Add test for bug #61292, bug was fixed in -r323935
This commit is contained in:
parent
1a1a8242c4
commit
02b3b616ce
1 changed files with 36 additions and 0 deletions
36
ext/pdo/tests/bug61292.phpt
Normal file
36
ext/pdo/tests/bug61292.phpt
Normal 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) {
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue