Skip to content

Commit 9f63657

Browse files
committed
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Fix failing soap tests on Windows
2 parents 706bcdb + 5f3e6e3 commit 9f63657

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

ext/soap/tests/bugs/bug27722.phpt

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Bug #27722 (Segfault on schema without targetNamespace)
33
--EXTENSIONS--
44
soap
5-
--GET--
6-
wsdl
75
--INI--
86
soap.wsdl_cache_enabled=0
97
--FILE--

ext/soap/tests/bugs/bug27742.phpt

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Bug #27742 (WDSL SOAP Parsing Schema bug)
33
--EXTENSIONS--
44
soap
5-
--GET--
6-
wsdl
75
--INI--
86
soap.wsdl_cache_enabled=0
97
--FILE--

ext/soap/tests/server011.phpt

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
--TEST--
22
SOAP Server 11: bind
3+
--SKIPIF--
4+
<?php
5+
if (PHP_OS_FAMILY === "Windows") {
6+
die("skip currently unsupported on Windows");
7+
}
8+
?>
39
--EXTENSIONS--
410
soap
511
--GET--

ext/soap/tests/server012.phpt

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
--TEST--
22
SOAP Server 12: WSDL generation
3+
--SKIPIF--
4+
<?php
5+
if (PHP_OS_FAMILY === "Windows") {
6+
die("skip currently unsupported on Windows");
7+
}
8+
?>
39
--EXTENSIONS--
410
soap
511
--GET--

0 commit comments

Comments
 (0)