diff options
-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= |