diff options
| author | Arnaud Le Blanc <lbarnaud@php.net> | 2009-05-20 10:08:32 +0000 |
|---|---|---|
| committer | Arnaud Le Blanc <lbarnaud@php.net> | 2009-05-20 10:08:32 +0000 |
| commit | 654073073221f2ecbbd2b9b69ca8da74461112f1 (patch) | |
| tree | 5c7adfa65b849518347fdf240990c0736d6d0422 /ext | |
| parent | 0813510d1b07ca506629132dbdc3d8f803a89da2 (diff) | |
| download | php-git-654073073221f2ecbbd2b9b69ca8da74461112f1.tar.gz | |
MFH: Fix skipif
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt | 1 | ||||
| -rw-r--r-- | ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt | 1 | ||||
| -rw-r--r-- | ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt b/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt index d8f91d328e..22bab4eae3 100644 --- a/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt +++ b/ext/soap/tests/interop/Round2/Base/r2_base_005p.phpt @@ -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)); diff --git a/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt b/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt index 116e14faac..f94c06f58c 100644 --- a/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt +++ b/ext/soap/tests/interop/Round2/Base/r2_base_005s.phpt @@ -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)); diff --git a/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt b/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt index 728b4f5c58..3bb1368b97 100644 --- a/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt +++ b/ext/soap/tests/interop/Round2/Base/r2_base_005w.phpt @@ -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-- |
