diff options
author | 2015-07-16 18:57:21 +0000 | |
---|---|---|
committer | 2015-07-16 18:57:21 +0000 | |
commit | bdf8d712ac0a56a87619230471fbec33ecd4207e (patch) | |
tree | 508df16b27cc9307dfd055345310e76f7825fd3e | |
parent | Print the received percentage in client.log instead of dots. (diff) | |
download | wireguard-openbsd-bdf8d712ac0a56a87619230471fbec33ecd4207e.tar.xz wireguard-openbsd-bdf8d712ac0a56a87619230471fbec33ecd4207e.zip |
Add gigabit test over tls
-rw-r--r-- | regress/usr.sbin/httpd/tests/args-tls-get-1073741824.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/regress/usr.sbin/httpd/tests/args-tls-get-1073741824.pl b/regress/usr.sbin/httpd/tests/args-tls-get-1073741824.pl new file mode 100644 index 00000000000..12af833769c --- /dev/null +++ b/regress/usr.sbin/httpd/tests/args-tls-get-1073741824.pl @@ -0,0 +1,18 @@ +use strict; +use warnings; + +my $len = 1073741824; +our %args = ( + client => { + tls => 1, + path => "$len", + len => $len, + }, + httpd => { + listentls => 1, + }, + len => $len, + md5 => path_md5("$len"), +); + +1; |