summaryrefslogtreecommitdiff
path: root/regress/sys/kern/splice/args-null-max-sleep-client-nonblock.pl
blob: 801a9584d7edb049d33583967fa793229635e714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# test maximum data length with delay before empty client write with non-blocking relay

use strict;
use warnings;

our %args = (
    client => {
	func => sub { sleep 3 },
	len => 0,
    },
    relay => {
	max => 113,
	nonblocking => 1,
    },
    len => 0,
    md5 => "d41d8cd98f00b204e9800998ecf8427e",
);

1;