php-8.0.30-src/ext/pcntl/tests/bug81577_3.phpt

22 lines
589 B
PHP

--TEST--
Bug #81577: (Exceptions in interrupt handlers: cleanup_live_vars)
--SKIPIF--
<?php
if (!extension_loaded("pcntl")) print "skip pcntl extension not available";
elseif (!extension_loaded('posix')) die('skip posix extension not available');
?>
--XFAIL--
leaks are not fixed yet
--FILE--
<?php
pcntl_async_signals(true);
pcntl_signal(SIGTERM, function ($signo) { throw new Exception("Signal"); });
try {
array_merge([1], [2]) + posix_kill(posix_getpid(), SIGTERM);
} catch (Throwable $ex) {
echo get_class($ex) , " : " , $ex->getMessage() , "\n";
}
?>
--EXPECT--
Exception : Signal