mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
Only covers constants declared via stub files, others will be handled separately in a later commit. Does not include the intl extension, since that had some errors relating to the cpp code; that extension will be updated separately.
25 lines
661 B
PHP
25 lines
661 B
PHP
--TEST--
|
|
Bug #80290: Double free when ASSERT_CALLBACK is used with a dynamic message
|
|
--FILE--
|
|
<?php
|
|
|
|
assert_options(ASSERT_CALLBACK, function($file, $line, $unused, $message) {
|
|
var_dump($message);
|
|
});
|
|
|
|
$x = 'x';
|
|
assert(false, 'Dynamic message: ' . $x);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Constant ASSERT_CALLBACK is deprecated since 8.3, as assert_options() is deprecated in %s on line %d
|
|
|
|
Deprecated: Function assert_options() is deprecated since 8.3 in %s on line %d
|
|
string(18) "Dynamic message: x"
|
|
|
|
Fatal error: Uncaught AssertionError: Dynamic message: x in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): assert(false, 'Dynamic message...')
|
|
#1 {main}
|
|
thrown in %s on line %d
|