pajoye Tue, 13 Sep 2011 13:26:48 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=316625
Log: - skip on win, runtime TZ via putenv is not supported with ext/date Changed paths: U php/php-src/branches/PHP_5_3/ext/date/tests/bug33532.phpt U php/php-src/branches/PHP_5_4/ext/date/tests/bug33532.phpt U php/php-src/trunk/ext/date/tests/bug33532.phpt Modified: php/php-src/branches/PHP_5_3/ext/date/tests/bug33532.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/date/tests/bug33532.phpt 2011-09-13 13:20:09 UTC (rev 316624) +++ php/php-src/branches/PHP_5_3/ext/date/tests/bug33532.phpt 2011-09-13 13:26:48 UTC (rev 316625) @@ -3,6 +3,10 @@ --INI-- error_reporting=2047 date.timezone=UTC +--SKIPIF-- +<?php +if(PHP_OS == 'Darwin' || defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip strftime uses system TZ on Darwin and Windows"); +?> --FILE-- <?php Modified: php/php-src/branches/PHP_5_4/ext/date/tests/bug33532.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/date/tests/bug33532.phpt 2011-09-13 13:20:09 UTC (rev 316624) +++ php/php-src/branches/PHP_5_4/ext/date/tests/bug33532.phpt 2011-09-13 13:26:48 UTC (rev 316625) @@ -5,7 +5,8 @@ date.timezone=UTC --SKIPIF-- <?php -if(PHP_OS == 'Darwin') die("skip strftime depends on TZ on Darwin"); +if(PHP_OS == 'Darwin' || defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip strftime uses system TZ on Darwin and Windows"); +?> --FILE-- <?php Modified: php/php-src/trunk/ext/date/tests/bug33532.phpt =================================================================== --- php/php-src/trunk/ext/date/tests/bug33532.phpt 2011-09-13 13:20:09 UTC (rev 316624) +++ php/php-src/trunk/ext/date/tests/bug33532.phpt 2011-09-13 13:26:48 UTC (rev 316625) @@ -5,7 +5,8 @@ date.timezone=UTC --SKIPIF-- <?php -if(PHP_OS == 'Darwin') die("skip strftime depends on TZ on Darwin"); +if(PHP_OS == 'Darwin' || defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip strftime uses system TZ on Darwin and Windows"); +?> --FILE-- <?php
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php