xref: /openbsd-src/regress/usr.sbin/httpd/tests/args-get-slash.pl (revision fd0974f5352430493b09b06270d81160c616324d)
1use strict;
2use warnings;
3
4our %args = (
5    client => {
6	func => sub {
7	    my $self = shift;
8	    print "GET /\r\n\r\n";
9	},
10	nocheck => 1
11    },
12    httpd => {
13	loggrep => {
14	    qr/"GET \/" 400 0/ => 1,
15	},
16    },
17);
18
191;
20
21