##// END OF EJS Templates
tests: avoid test failure for mangling path-like string by MSYS
FUJIWARA Katsunori -
r33098:c4a20c94 default
parent child Browse files
Show More
@@ -131,7 +131,13 b" Check hgweb's load order of extensions a"
131 131
132 132 (check that revset predicate foo() and bar() are available)
133 133
134 $ REQUEST_METHOD='GET' PATH_INFO='/shortlog' SCRIPT_NAME='' \
134 #if msys
135 $ PATH_INFO='//shortlog'
136 #else
137 $ PATH_INFO='/shortlog'
138 #endif
139 $ export PATH_INFO
140 $ REQUEST_METHOD='GET' SCRIPT_NAME='' \
135 141 > QUERY_STRING='rev=foo() and bar()' \
136 142 > SERVER_PORT='80' SERVER_NAME='localhost' python hgweb.cgi \
137 143 > | grep '<a href="/rev/[0-9a-z]*">'
General Comments 0
You need to be logged in to leave comments. Login now