diff options
author | Pierre Joye <pajoye@php.net> | 2011-09-13 13:26:48 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-09-13 13:26:48 +0000 |
commit | 3a3c2942d254be88b82fc871ef4fa9698e921ac7 (patch) | |
tree | bd423e8c3c9214e6e6a28be21f3bb59b77f3dd8f | |
parent | 409941c2d194d07c7301b495489b2d867072c36c (diff) | |
download | php-git-3a3c2942d254be88b82fc871ef4fa9698e921ac7.tar.gz |
- skip on win, runtime TZ via putenv is not supported with ext/date
-rw-r--r-- | ext/date/tests/bug33532.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/date/tests/bug33532.phpt b/ext/date/tests/bug33532.phpt index 5c88e73acd..148630855d 100644 --- a/ext/date/tests/bug33532.phpt +++ b/ext/date/tests/bug33532.phpt @@ -5,7 +5,8 @@ error_reporting=2047 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 |