diff options
author | Anatoliy Belsky <ab@php.net> | 2012-04-30 12:06:28 +0200 |
---|---|---|
committer | Anatoliy Belsky <ab@php.net> | 2012-04-30 12:06:28 +0200 |
commit | 680685127fc60fb1891effb7afb33639aa231502 (patch) | |
tree | 44bd33a1f4e695dfb9e836b93e6fcebef46de492 /ext/session | |
parent | 8249581a2df0c2546721f6a55e58ba9d5e72653b (diff) | |
download | php-git-680685127fc60fb1891effb7afb33639aa231502.tar.gz |
Fix bug 61870 ext\session\tests\bug42596.phpt fails
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/tests/bug42596.phpt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/session/tests/bug42596.phpt b/ext/session/tests/bug42596.phpt index fd9a602921..3d11607b4c 100644 --- a/ext/session/tests/bug42596.phpt +++ b/ext/session/tests/bug42596.phpt @@ -1,7 +1,10 @@ --TEST-- Bug #42596 (session.save_path MODE option will not set "write" bit for group or world) --SKIPIF-- -<?php include('skipif.inc'); ?> +<?php + if(substr(PHP_OS, 0, 3) == "WIN") die("skip not for Windows"); + include('skipif.inc'); +?> --INI-- session.use_cookies=0 session.cache_limiter= |