mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
1173c2e64a
Generators that suspended a fiber should not be dtor because they will be executed during the fiber dtor. Fiber dtor throws an exception in the fiber's context in order to unwind and execute finally blocks, which will also properly dtor the generator. Fixes GH-9916
37 lines
815 B
PHP
37 lines
815 B
PHP
--TEST--
|
|
Bug GH-9916 003 (Entering shutdown sequence with a fiber suspended in a Generator emits an unavoidable fatal error or crashes)
|
|
--FILE--
|
|
<?php
|
|
$gen = (function() {
|
|
$x = new stdClass;
|
|
try {
|
|
yield from (function () {
|
|
$x = new stdClass;
|
|
try {
|
|
print "Before suspend\n";
|
|
Fiber::suspend();
|
|
print "Not executed\n";
|
|
yield;
|
|
} finally {
|
|
print "Finally (inner)\n";
|
|
}
|
|
})();
|
|
print "Not executed\n";
|
|
yield;
|
|
} finally {
|
|
print "Finally\n";
|
|
}
|
|
})();
|
|
$fiber = new Fiber(function() use ($gen, &$fiber) {
|
|
$gen->current();
|
|
print "Not executed";
|
|
});
|
|
$fiber->start();
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
Before suspend
|
|
==DONE==
|
|
Finally (inner)
|
|
Finally
|