summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/httpd/tests/args-get-slash.pl
blob: cd07569642b77706858acc51d3c16410e701644b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;

our %args = (
    client => {
	func => sub {
	    my $self = shift;
	    print "GET /\r\n\r\n";
	},
        nocheck => 1
    },
    httpd => {
	loggrep => {
	    qr/"GET \/" 400 0/ => 1,
	},
    },
);

1;