aports/community/php82/fix-test-gh16628.patch
Andy Postnikov b215f6c4f4 community/php82: security upgrade to 8.2.26
- CVE-2024-8929
- CVE-2024-8932
- CVE-2024-11233
- CVE-2024-11234
- CVE-2024-11236
2024-11-19 23:00:33 +00:00

24 lines
811 B
Diff

Patch-Source: https://github.com/php/php-src/pull/16705
From 2b445194a0732e548acab4fdf63c05cdf7f18f98 Mon Sep 17 00:00:00 2001
From: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
Date: Tue, 5 Nov 2024 20:38:46 +0100
Subject: [PATCH] Fix test with shared zend_test
---
sapi/fpm/tests/gh16628.phpt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sapi/fpm/tests/gh16628.phpt b/sapi/fpm/tests/gh16628.phpt
index e2df0c8cb84d..b160bb180ffb 100644
--- a/sapi/fpm/tests/gh16628.phpt
+++ b/sapi/fpm/tests/gh16628.phpt
@@ -32,7 +32,7 @@ for ($i = 1; $i < 100; $i++) {
EOT;
$tester = new FPM\Tester($cfg, $code);
-$tester->start();
+$tester->start(extensions: ['zend_test']);
$tester->expectLogStartNotices();
$tester->request()->expectEmptyBody();
for ($i = 1; $i < 100; $i++) {