summaryrefslogtreecommitdiff
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
commit21fb2a42ccf039376cce06c51fb85eb716ed7611 (patch)
treebf5b5cb058f41527ce99d69fca29750a3ddeb5a0
parent3b37e152c352d84259fd67fbebf35e26b5d8fe3f (diff)
downloadphp-git-21fb2a42ccf039376cce06c51fb85eb716ed7611.tar.gz
Changed session.save_path to /tmp to make test run.
-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";