From: Shein Alexey Date: Thu, 9 Jun 2011 08:24:12 +0000 (+0000) Subject: Changed session.save_path to /tmp to make test run. X-Git-Tag: php-5.5.0alpha1~1967 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1d7b4d3c6e018a3e8efb81e2503f0e7c7890365;p=php Changed session.save_path to /tmp to make test run. --- diff --git a/ext/session/tests/bug32330.phpt b/ext/session/tests/bug32330.phpt index c0d3370e01..98d442ae5c 100644 --- a/ext/session/tests/bug32330.phpt +++ b/ext/session/tests/bug32330.phpt @@ -6,7 +6,7 @@ Bug #32330 (session_destroy, "Failed to initialize storage module", custom sessi session.use_trans_sid=0 session.use_cookies=1 session.name=sid -session.save_path=/ +session.save_path=/tmp session.gc_probability=1 session.gc_divisor=1 --FILE-- @@ -68,17 +68,17 @@ $_SESSION['E'] = 'F'; ?> --EXPECTF-- -open: path = /, name = sid +open: path = /tmp, name = sid read: id = %s gc: maxlifetime = %d write: id = %s, data = A|s:1:"B"; close -open: path = /, name = sid +open: path = /tmp, name = sid read: id = %s gc: maxlifetime = %d destroy: id = %s close -open: path = /, name = sid +open: path = /tmp, name = sid read: id = %s gc: maxlifetime = %d write: id = %s, data = E|s:1:"F";