aboutsummaryrefslogtreecommitdiff
path: root/regress/tests/args-get-1073741824.pl
diff options
context:
space:
mode:
Diffstat (limited to 'regress/tests/args-get-1073741824.pl')
-rw-r--r--regress/tests/args-get-1073741824.pl16
1 files changed, 16 insertions, 0 deletions
diff --git a/regress/tests/args-get-1073741824.pl b/regress/tests/args-get-1073741824.pl
new file mode 100644
index 0000000..2b4c5f4
--- /dev/null
+++ b/regress/tests/args-get-1073741824.pl
@@ -0,0 +1,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;