pajoye Tue, 13 Sep 2011 13:51:47 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=316633
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/mktime-2.phpt U php/php-src/branches/PHP_5_4/ext/date/tests/mktime-2.phpt U php/php-src/trunk/ext/date/tests/mktime-2.phpt Modified: php/php-src/branches/PHP_5_3/ext/date/tests/mktime-2.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/date/tests/mktime-2.phpt 2011-09-13 13:46:59 UTC (rev 316632) +++ php/php-src/branches/PHP_5_3/ext/date/tests/mktime-2.phpt 2011-09-13 13:51:47 UTC (rev 316633) @@ -1,5 +1,9 @@ --TEST-- mktime() [2] +--SKIPIF-- +<?php +if(defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip mktime uses system TZ on Windows and putenv TZ is not supported on Windows at runtime"); +?> --INI-- error_reporting=2047 --FILE-- Modified: php/php-src/branches/PHP_5_4/ext/date/tests/mktime-2.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/date/tests/mktime-2.phpt 2011-09-13 13:46:59 UTC (rev 316632) +++ php/php-src/branches/PHP_5_4/ext/date/tests/mktime-2.phpt 2011-09-13 13:51:47 UTC (rev 316633) @@ -1,5 +1,9 @@ --TEST-- mktime() [2] +--SKIPIF-- +<?php +if(defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip mktime uses system TZ on Windows and putenv TZ is not supported on Windows at runtime"); +?> --INI-- error_reporting=2047 --FILE-- Modified: php/php-src/trunk/ext/date/tests/mktime-2.phpt =================================================================== --- php/php-src/trunk/ext/date/tests/mktime-2.phpt 2011-09-13 13:46:59 UTC (rev 316632) +++ php/php-src/trunk/ext/date/tests/mktime-2.phpt 2011-09-13 13:51:47 UTC (rev 316633) @@ -1,5 +1,9 @@ --TEST-- mktime() [2] +--SKIPIF-- +<?php +if(defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip mktime uses system TZ on Windows and putenv TZ is not supported on Windows at runtime"); +?> --INI-- error_reporting=2047 --FILE--
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php