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

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

1;