# HG changeset patch # User FUJIWARA Katsunori # Date 1421853026 -32400 # Node ID 30b016ef4bd896c606a3f70bbe3c4b804f21d2ea # Parent d64dd12523868a952e82719777d5776fb6c2fa8e check-code.py: avoid warning against "reverting subrepo ..." lines Before this patch, "reverting subrepo subrepo/path" lines in *.t test files require "(glob)", because such lines are recognized as "reverting path/to/managed/file" by "check-code.py". On the other hand, "(glob)" for such "reverting ..." line is recognized as useless by "runt-tests.py", because subrepo paths shown in such lines are always normalized by "util.pconvert". And this causes "no result code from test" warning. As a preparation for discarding "(glob)" from such lines in subsequent patch, this patch avoids warning against them, by adding negative lookahead assertion "(?!subrepo )" to the regexp. diff -r d64dd1252386 -r 30b016ef4bd8 contrib/check-code.py --- a/contrib/check-code.py Thu Jan 22 00:07:06 2015 +0900 +++ b/contrib/check-code.py Thu Jan 22 00:10:26 2015 +0900 @@ -159,7 +159,7 @@ winglobmsg), (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'), # in test-issue1802.t which skipped on windows - (r'^ reverting .*/.*[^)]$', winglobmsg), + (r'^ reverting (?!subrepo ).*/.*[^)]$', winglobmsg), (r'^ cloning subrepo \S+/.*[^)]$', winglobmsg), (r'^ pushing to \$TESTTMP/.*[^)]$', winglobmsg), (r'^ pushing subrepo \S+/\S+ to.*[^)]$', winglobmsg),