aboutsummaryrefslogtreecommitdiff
path: root/regress/tests/args-get-1048576.pl
blob: 9253aec6cdcc81ea7dfce36f81c05fb24ec59c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

my $len = 1048576;
our %args = (
    client => {
	path => "$len",
	len => $len,
        http_vers => [ "1.0" ],
    },
    len => 1048576,
    md5 => path_md5("$len")
);

1;