Annotation of embedaddon/php/ext/soap/tests/bugs/bug29109.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --INI--
        !             6: soap.wsdl_cache_enabled=0
        !             7: --FILE--
        !             8: <?php
        !             9: $client = new SoapClient(dirname(__FILE__)."/bug29109.wsdl");
        !            10: var_dump($client->__getFunctions()); 
        !            11: ?>
        !            12: --EXPECT--
        !            13: array(1) {
        !            14:   [0]=>
        !            15:   string(53) "HelloWorldResponse HelloWorld(HelloWorld $parameters)"
        !            16: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>