summaryrefslogtreecommitdiff
path: root/Zend/tests/bug76025.phpt
blob: 2619984d1e34b1f2d3dc9ccdbcdbfbbfe9122f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #76025 (Segfault while throwing exception in error_handler)
--FILE--
<?php

function handleError($errno, $errstr, $errfile, $errline) {
	$exception = new exception("blah");
	throw $exception;
}
set_error_handler('handleError', E_ALL);
$c = $b[$a];
?>
--EXPECTF--
Fatal error: Uncaught Exception: blah in %sbug76025.php:%d
Stack trace:
#0 %sbug76025.php(%d): handleError(8, 'Undefined varia...', '%s', %d, Array)
#1 {main}
  thrown in %sbug76025.php on line %d