Commit:    94cbd6374adcb3e2ac15303dd47a212953f93e98
Author:    Anatoliy Belsky <a...@php.net>         Wed, 5 Dec 2012 09:55:49 +0100
Parents:   31ab57e052925305008c20e787f514c159d3469d
Branches:  PHP-5.3 PHP-5.4 PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=94cbd6374adcb3e2ac15303dd47a212953f93e98

Log:
Two tests deactivated until #63688 was fixed

Bugs:
https://bugs.php.net/63688

Changed paths:
  M  tests/lang/034.phpt
  M  tests/lang/bug30638.phpt


Diff:
diff --git a/tests/lang/034.phpt b/tests/lang/034.phpt
index 5d2c610..cea0797 100644
--- a/tests/lang/034.phpt
+++ b/tests/lang/034.phpt
@@ -4,6 +4,10 @@ Bug #12647 (Locale settings affecting float parsing)
 precision=14
 --SKIPIF--
 <?php  # try to activate a german locale
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+    /* skip on windows until #63688 was fixed */
+    die('skip');
+}
 if (setlocale(LC_NUMERIC, "de_DE.UTF-8", "de_DE", "de", "german", "ge", 
"de_DE.ISO-8859-1") === FALSE) {
        print "skip Can't find german locale";
 }
diff --git a/tests/lang/bug30638.phpt b/tests/lang/bug30638.phpt
index 30b70f3..945a228 100644
--- a/tests/lang/bug30638.phpt
+++ b/tests/lang/bug30638.phpt
@@ -2,6 +2,10 @@
 Bug #30638 (localeconv returns wrong LC_NUMERIC settings) (ok to fail on MacOS 
X)
 --SKIPIF--
 <?php  # try to activate a german locale
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+    /* skip on windows until #63688 was fixed */
+    die('skip');
+}
 if (setlocale(LC_NUMERIC, "de_DE.UTF-8", "de_DE", "de", "german", "ge", 
"de_DE.ISO-8859-1") === FALSE) {
        print "skip setlocale() failed";
 } elseif (strtolower(php_uname('s')) == 'darwin') {


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to