summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/relayd/args-timeout.pl
blob: 117a6d434042dcd8480a96447c228073e6550654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# test that 3 seconds timeout occurs within 4 seconds idle

use strict;
use warnings;

our %args = (
    client => {
	func => sub {
	    errignore();
	    write_char(@_, 5);
	    sleep 4;
	    write_char(@_, 4);
	},
	sleep => 1,
	down => "Broken pipe",
	timefile => "",
	nocheck => 1,
    },
    relayd => {
	relay => [ "session timeout 3" ],
    },
    len => 5,
);

1;