1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Merge branch 'PHP-8.2'

This commit is contained in:
Jakub Zelenka
2023-06-15 17:37:35 +01:00
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');