1--TEST--
2Session bad configurations, lock wait time
3--SKIPIF--
4<?php include dirname(__FILE__) . "/skipif.inc";
5	print "skip skip until timeout in memcached set"
6?>
7--INI--
8memcached.sess_locking = on
9memcached.sess_lock_wait = -1
10memcached.sess_prefix = "memc.sess.key."
11session.save_path="127.0.0.1:51312"
12session.save_handler = memcached
13
14--FILE--
15<?php
16error_reporting(0);
17function handler($errno, $errstr) {
18	echo "$errstr\n";
19}
20
21set_error_handler('handler', E_ALL);
22
23session_start();
24session_write_close();
25
26echo "OK\n";
27
28--EXPECTF--
29OK