1--TEST-- 2Bug #76348 (WSDL_CACHE_MEMORY causes Segmentation fault) 3--SKIPIF-- 4<?php 5if (!extension_loaded('soap')) die('skip soap extension not available'); 6if (getenv("SKIP_ONLINE_TESTS")) die("skip online test"); 7?> 8--FILE-- 9<?php 10$client = new SoapClient(__DIR__ . DIRECTORY_SEPARATOR . 'bug76348.wsdl', [ 11 'cache_wsdl' => WSDL_CACHE_MEMORY, 12]); 13?> 14===DONE=== 15--EXPECT-- 16===DONE=== 17