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