Skip to content

Commit

Permalink
- skip on win, runtime TZ via putenv is not supported with ext/date
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Sep 13, 2011
1 parent 409941c commit 3a3c294
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/date/tests/bug33532.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3a3c294

Please sign in to comment.