Commit 1b8d390d73b for php

commit 1b8d390d73b45cd687021197fec99ad4c8f9eb21
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date:   Fri Sep 25 15:00:52 2026 +0200

    [skip ci] Skip recursion tests on ASAN

    ASAN stack usage is unreliable so we might overflow before the limit is reached.

diff --git a/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-chain.phpt b/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-chain.phpt
index e07f78d816f..a8e96473166 100644
--- a/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-chain.phpt
+++ b/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-chain.phpt
@@ -2,6 +2,12 @@
 GHSA-rgrp-mwpx-f6rm: Stack overflow on a chain of href references
 --EXTENSIONS--
 soap
+--SKIPIF--
+<?php
+if (getenv('SKIP_ASAN')) {
+    die('skip ASAN needs different stack limit setting due to more stack space usage');
+}
+?>
 --FILE--
 <?php

diff --git a/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-cycle.phpt b/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-cycle.phpt
index 5058ba109bf..9d27b4afd3e 100644
--- a/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-cycle.phpt
+++ b/ext/soap/tests/GHSA-rgrp-mwpx-f6rm-href-cycle.phpt
@@ -2,6 +2,12 @@
 GHSA-rgrp-mwpx-f6rm: Stack overflow on an array element referencing its own array
 --EXTENSIONS--
 soap
+--SKIPIF--
+<?php
+if (getenv('SKIP_ASAN')) {
+    die('skip ASAN needs different stack limit setting due to more stack space usage');
+}
+?>
 --FILE--
 <?php