summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorShein Alexey <shein@php.net>2011-06-09 08:24:12 +0000
committerShein Alexey <shein@php.net>2011-06-09 08:24:12 +0000
commitf1d7b4d3c6e018a3e8efb81e2503f0e7c7890365 (patch)
treede043ae36db597fce4a5c5a226e5a10f81eb6a61 /ext
parentfb014c0f6da777572d409d3c383799a41c0e935a (diff)
downloadphp-git-f1d7b4d3c6e018a3e8efb81e2503f0e7c7890365.tar.gz
Changed session.save_path to /tmp to make test run.
Diffstat (limited to 'ext')
-rw-r--r--ext/session/tests/bug32330.phpt8
1 files changed, 4 insertions, 4 deletions
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";