1# test that 2 seconds timeout does not occur while server writes for 4 seconds
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&http_client,
9	len => 5,
10	method => "GET",
11	timefile => "",
12    },
13    relayd => {
14	relay => [ "session timeout 2" ],
15	loggrep => { qr/(buffer event|splice) timeout/ => 0 },
16    },
17    server => {
18	func => \&http_server,
19	sleep => 1,
20	method => "GET",
21    },
22    len => 5,
23);
24
251;
26