diff options
author | Pierre Joye <pajoye@php.net> | 2011-09-12 23:31:22 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-09-12 23:31:22 +0000 |
commit | 4262382199df2731511840b06ec20887134a82cf (patch) | |
tree | c715b5342de96edcdb065b490a016b9e22fe12b2 | |
parent | d7c7fe3587b95b65317d5ccf5a2837ebda0030b8 (diff) | |
download | php-git-4262382199df2731511840b06ec20887134a82cf.tar.gz |
- skip on win, strftime uses system TZ
-rw-r--r-- | ext/date/tests/bug32555.phpt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/date/tests/bug32555.phpt b/ext/date/tests/bug32555.phpt index a99d3e2890..31fafbfd48 100644 --- a/ext/date/tests/bug32555.phpt +++ b/ext/date/tests/bug32555.phpt @@ -1,5 +1,9 @@ --TEST-- Bug #32555 (strtotime("tomorrow") can return false) +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') die('skip strftime uses system TZ'); +?> --INI-- date.timezone=US/Eastern --FILE-- |