From fa22388529cd871d1c03205851fe83c263315ea2 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Mon, 20 Feb 2012 18:42:43 +0000 Subject: [PATCH] PATH_INFO support --- test/test.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.pl b/test/test.pl index aaccfafb..12947795 100644 --- a/test/test.pl +++ b/test/test.pl @@ -364,6 +364,7 @@ unless (scalar(@ARGV) > 0 and $ARGV[0] eq "basic_tests") { o("GET /env.cgi HTTP/1.0\n\r\n", '\nCGI_FOO=foo\n', '-cgi_env 1'); o("GET /env.cgi HTTP/1.0\n\r\n", '\nCGI_BAR=bar\n', '-cgi_env 2'); o("GET /env.cgi HTTP/1.0\n\r\n", '\nCGI_BAZ=baz\n', '-cgi_env 3'); + o("GET /env.cgi/a/b HTTP/1.0\n\r\n", 'PATH_INFO=/a/b\n', 'PATH_INFO'); # Check that CGI's current directory is set to script's directory my $copy_cmd = on_windows() ? 'copy' : 'cp';