Commit e64e8b01171 for php.net

commit e64e8b0117172b1db98e0c1f9de4fe3ce88798a3
Author: David Carlier <devnexen@gmail.com>
Date:   Thu Feb 26 19:09:43 2026 +0000

    ext/pcre: fix new pcre2 test

    close GH-21307

diff --git a/ext/pcre/tests/preg_match_all_negative_length_match.phpt b/ext/pcre/tests/preg_match_all_negative_length_match.phpt
index 0deb27749e1..b18007cd325 100644
--- a/ext/pcre/tests/preg_match_all_negative_length_match.phpt
+++ b/ext/pcre/tests/preg_match_all_negative_length_match.phpt
@@ -6,5 +6,5 @@
 var_dump($result);
 ?>
 --EXPECTF--
-Warning: preg_match_all(): Get subpatterns list failed in %s on line %d
+Warning: preg_match_all(): Compilation failed: \K is not allowed in lookarounds (but see PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK) at offset %d in %s
 bool(false)
diff --git a/ext/pcre/tests/preg_match_negative_length_match.phpt b/ext/pcre/tests/preg_match_negative_length_match.phpt
index f321cb20b9c..221ea4fb9e5 100644
--- a/ext/pcre/tests/preg_match_negative_length_match.phpt
+++ b/ext/pcre/tests/preg_match_negative_length_match.phpt
@@ -6,5 +6,5 @@
 var_dump($result);
 ?>
 --EXPECTF--
-Warning: preg_match(): Get subpatterns list failed in %s on line %d
+Warning: preg_match(): Compilation failed: \K is not allowed in lookarounds (but see PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK) at offset %d in %s
 bool(false)