Skip to content

Commit 5a32b51

Browse files
committed
Add SKIPIFs for upstream regression in libxslt (#14674)
See https://gitlab.gnome.org/GNOME/libxslt/-/issues/113
1 parent a9acc29 commit 5a32b51

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)