Skip to content

Commit 4794c1f

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Add SKIPIFs for upstream regression in libxslt (#14674)
2 parents a5a75ae + 5a32b51 commit 4794c1f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
if ((LIBXSLT_VERSION === 10140 || LIBXSLT_VERSION === 10141)
3+
&& LIBXML_VERSION < 21300) {
4+
die('skip upstream regression https://gitlab.gnome.org/GNOME/libxslt/-/issues/113');
5+
}

ext/xsl/tests/xslt010_gt10129.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ xsl
77
$proc = new xsltprocessor;
88
if (!$proc->hasExsltSupport()) die('skip EXSLT support not available');
99
if (LIBXSLT_VERSION < 10130) die('skip too old libxsl');
10+
require __DIR__.'/skip_upstream_issue113.inc';
1011
?>
1112
--FILE--
1213
<?php

0 commit comments

Comments
 (0)