[PATCH 1 of 2] tests: avoid test failure for mangling path-like string by MSYS

FUJIWARA Katsunori foozy at lares.dti.ne.jp
Mon Jun 26 20:21:41 UTC 2017


# HG changeset patch
# User FUJIWARA Katsunori <foozy at lares.dti.ne.jp>
# Date 1498497877 -32400
#      Tue Jun 27 02:24:37 2017 +0900
# Node ID c31f122d54b6904e1fb212c2e14b162fbb977153
# Parent  c41cbe98822c5cd5a9a776d47b90c25e2ee11063
tests: avoid test failure for mangling path-like string by MSYS

diff --git a/tests/test-extension.t b/tests/test-extension.t
--- a/tests/test-extension.t
+++ b/tests/test-extension.t
@@ -131,7 +131,13 @@ Check hgweb's load order of extensions a
 
 (check that revset predicate foo() and bar() are available)
 
-  $ REQUEST_METHOD='GET' PATH_INFO='/shortlog' SCRIPT_NAME='' \
+#if msys
+  $ PATH_INFO='//shortlog'
+#else
+  $ PATH_INFO='/shortlog'
+#endif
+  $ export PATH_INFO
+  $ REQUEST_METHOD='GET' SCRIPT_NAME='' \
   >     QUERY_STRING='rev=foo() and bar()' \
   >     SERVER_PORT='80' SERVER_NAME='localhost' python hgweb.cgi \
   >     | grep '<a href="/rev/[0-9a-z]*">'


More information about the Mercurial-devel mailing list