mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
The extension name should match the name of the ext/ directory, otherwise it will not get picked up by run-tests. It would be possible to remap this in run-tests, but I think it's better to rename the extension to follow the standard format. Other extensions also use underscore instead of hyphen (e.g. pdo_mysql and not pdo-mysql). Of course, the ./configure option remains hyphenated. Closes GH-6613.
30 lines
682 B
PHP
30 lines
682 B
PHP
--TEST--
|
|
Observer: End handlers fire after a fatal error
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('zend_test')) die('skip: zend_test extension required'); ?>
|
|
--INI--
|
|
zend_test.observer.enabled=1
|
|
zend_test.observer.observe_all=1
|
|
zend_test.observer.show_return_value=1
|
|
memory_limit=1M
|
|
--FILE--
|
|
<?php
|
|
function foo()
|
|
{
|
|
str_repeat('.', 1024 * 1024 * 2); // 2MB
|
|
}
|
|
|
|
foo();
|
|
|
|
echo 'You should not see this.';
|
|
?>
|
|
--EXPECTF--
|
|
<!-- init '%s%eobserver_error_%d.php' -->
|
|
<file '%s%eobserver_error_%d.php'>
|
|
<!-- init foo() -->
|
|
<foo>
|
|
|
|
Fatal error: Allowed memory size of 2097152 bytes exhausted%s(tried to allocate %d bytes) in %s on line %d
|
|
</foo:NULL>
|
|
</file '%s%eobserver_error_%d.php'>
|