]> granicus.if.org Git - php/commitdiff
Skip reason is now printed if session.save_path is not writable.
authorShein Alexey <shein@php.net>
Thu, 9 Jun 2011 08:18:49 +0000 (08:18 +0000)
committerShein Alexey <shein@php.net>
Thu, 9 Jun 2011 08:18:49 +0000 (08:18 +0000)
ext/session/tests/skipif.inc

index 6e3eae0862c42bd8f545db2b7d055c08189dfbc2..e63f963c5c5d1af3a3d5689ac118db032081f8d6 100644 (file)
@@ -18,7 +18,7 @@ if ($save_path) {
                        $save_path = substr($save_path, ++$p);
                }
                if (!@is_writable($save_path)) {
-                       die("skip\n");
+                       die("skip session.save_path $save_path is not writable\n");
                }
        }
 }