add check for setlocale() and sv_SE to SKIPIF section

This commit is contained in:
Antony Dovgal 2006-12-19 20:46:48 +00:00
parent 7d966063f6
commit a38ccf3969

View file

@ -1,7 +1,11 @@
--TEST-- --TEST--
Bug #39815 (to_zval_double() in ext/soap/php_encoding.c is not locale-independent) Bug #39815 (to_zval_double() in ext/soap/php_encoding.c is not locale-independent)
--SKIPIF-- --SKIPIF--
<?php require_once('skipif.inc'); ?> <?php
require_once('skipif.inc');
if (!function_exists('setlocale')) die('skip setlocale() not available');
if (!@setlocale(LC_ALL, 'sv_SE')) die('skip sv_SE locale not available');
?>
--FILE-- --FILE--
<?php <?php
function test(){ function test(){