1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.4'

* PHP-8.4:
  Fix failing soap tests on Windows
This commit is contained in:
Christoph M. Becker
2024-09-27 19:59:55 +02:00
4 changed files with 12 additions and 4 deletions

View File

@@ -2,8 +2,6 @@
Bug #27722 (Segfault on schema without targetNamespace)
--EXTENSIONS--
soap
--GET--
wsdl
--INI--
soap.wsdl_cache_enabled=0
--FILE--

View File

@@ -2,8 +2,6 @@
Bug #27742 (WDSL SOAP Parsing Schema bug)
--EXTENSIONS--
soap
--GET--
wsdl
--INI--
soap.wsdl_cache_enabled=0
--FILE--

View File

@@ -1,5 +1,11 @@
--TEST--
SOAP Server 11: bind
--SKIPIF--
<?php
if (PHP_OS_FAMILY === "Windows") {
die("skip currently unsupported on Windows");
}
?>
--EXTENSIONS--
soap
--GET--

View File

@@ -1,5 +1,11 @@
--TEST--
SOAP Server 12: WSDL generation
--SKIPIF--
<?php
if (PHP_OS_FAMILY === "Windows") {
die("skip currently unsupported on Windows");
}
?>
--EXTENSIONS--
soap
--GET--