Merge branch 'PHP-8.1' into PHP-8.2

This commit is contained in:
Jakub Zelenka 2023-06-15 17:37:09 +01:00
commit 6877b4f110
No known key found for this signature in database
GPG Key ID: 1C0779DC5C0A9DE4
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ EOT;
$tester = new FPM\Tester($cfg, $code);
$tester->start();
$tester->start(extensions: ['pcntl']);
$tester->expectLogStartNotices();
$tester->multiRequest(2);
$tester->status([

View File

@ -1,5 +1,5 @@
--TEST--
If SIGQUIT and SIGTERM during reloading fail, SIGKILL should be sent
FPM: If SIGQUIT and SIGTERM during reloading fail, SIGKILL should be sent
--EXTENSIONS--
pcntl
--SKIPIF--
@ -35,7 +35,7 @@ pcntl_sigprocmask(SIG_BLOCK, [SIGQUIT, SIGTERM]);
EOT;
$tester = new FPM\Tester($cfg, $code);
$tester->start();
$tester->start(extensions: ['pcntl']);
$tester->expectLogStartNotices();
$tester->request()->expectEmptyBody();
$tester->signal('USR2');