Skip to content

Commit b178c20

Browse files
peffgitster
authored andcommitted
t/gitweb-lib.sh: set $REQUEST_URI
In a real webserver's CGI call, gitweb.cgi would typically see $REQUEST_URI set. This variable does impact how we display our URL in the resulting page, so let's try to make our test as realistic as possible (we can just use the $PATH_INFO our caller passed in, if any). This doesn't change the outcome of any tests, but it will help us add some new tests in a future patch. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f28bcec commit b178c20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

t/gitweb-lib.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ gitweb_run () {
6060
REQUEST_METHOD='GET'
6161
QUERY_STRING=$1
6262
PATH_INFO=$2
63+
REQUEST_URI=/gitweb.cgi$PATH_INFO
6364
export GATEWAY_INTERFACE HTTP_ACCEPT REQUEST_METHOD \
64-
QUERY_STRING PATH_INFO
65+
QUERY_STRING PATH_INFO REQUEST_URI
6566

6667
GITWEB_CONFIG=$(pwd)/gitweb_config.perl
6768
export GITWEB_CONFIG

0 commit comments

Comments
 (0)