lbarnaud Wed May 20 10:08:32 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/soap/tests/interop/Round2/Base r2_base_005p.phpt r2_base_005s.phpt r2_base_005w.phpt /php-src/sapi/cli/tests 006.phpt Log: MFH: Fix skipif http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt?r1=1.1.6.1&r2=1.1.6.2&diff_format=u Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt:1.1.6.1 php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt:1.1.6.2 --- php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt:1.1.6.1 Sat May 24 15:22:18 2008 +++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt Wed May 20 10:08:32 2009 @@ -2,6 +2,7 @@ SOAP Interop Round2 base 005 (php/direct): echoString(utf-8) --SKIPIF-- <?php require_once('skipif.inc'); ?> +<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> --FILE-- <?php $client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=>1,"exceptions"=>0)); http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt?r1=1.1.6.1&r2=1.1.6.2&diff_format=u Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt:1.1.6.1 php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt:1.1.6.2 --- php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt:1.1.6.1 Sat May 24 15:22:18 2008 +++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt Wed May 20 10:08:32 2009 @@ -2,6 +2,7 @@ SOAP Interop Round2 base 005 (soap/direct): echoString(utf-8) --SKIPIF-- <?php require_once('skipif.inc'); ?> +<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> --FILE-- <?php $client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=>1,"exceptions"=>0)); http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt?r1=1.1.6.2&r2=1.1.6.3&diff_format=u Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt:1.1.6.2 php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt:1.1.6.3 --- php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt:1.1.6.2 Sat May 24 15:22:18 2008 +++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt Wed May 20 10:08:32 2009 @@ -2,6 +2,7 @@ SOAP Interop Round2 base 005 (php/wsdl): echoString(utf-8) --SKIPIF-- <?php require_once('skipif.inc'); ?> +<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> --INI-- soap.wsdl_cache_enabled=0 --FILE-- http://cvs.php.net/viewvc.cgi/php-src/sapi/cli/tests/006.phpt?r1=1.1.2.9.2.8&r2=1.1.2.9.2.9&diff_format=u Index: php-src/sapi/cli/tests/006.phpt diff -u php-src/sapi/cli/tests/006.phpt:1.1.2.9.2.8 php-src/sapi/cli/tests/006.phpt:1.1.2.9.2.9 --- php-src/sapi/cli/tests/006.phpt:1.1.2.9.2.8 Sat Aug 30 11:32:29 2008 +++ php-src/sapi/cli/tests/006.phpt Wed May 20 10:08:32 2009 @@ -3,7 +3,7 @@ --SKIPIF-- <?php include "skipif.inc"; -if (!extension_loaded("reflection")) { +if (!extension_loaded("reflection") || !extension_loaded("session")) { die("skip"); } ?>
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php