comparison contrib/check-code.py @ 20013:38acecdd016c

check-code: drop unneeded ignore patterns The exceptions seem to have disappeared.
author Simon Heimberg <simohe@besonet.ch>
date Sat, 09 Nov 2013 14:49:05 +0100
parents a1d88278beff
children 30eced973b28
comparison
equal deleted inserted replaced
20012:a1d88278beff 20013:38acecdd016c
140 (uprefix + r'(\s|fi\b|done\b)', "use > for continued lines"), 140 (uprefix + r'(\s|fi\b|done\b)', "use > for continued lines"),
141 (r'^ saved backup bundle to \$TESTTMP.*\.hg$', winglobmsg), 141 (r'^ saved backup bundle to \$TESTTMP.*\.hg$', winglobmsg),
142 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$', 142 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$',
143 winglobmsg), 143 winglobmsg),
144 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'), 144 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
145 (r'^ reverting .*/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'), 145 (r'^ reverting .*/.*[^)]$', winglobmsg),
146 (r'^ cloning subrepo \S+/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'), 146 (r'^ cloning subrepo \S+/.*[^)]$', winglobmsg),
147 (r'^ pushing to \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'), 147 (r'^ pushing to \$TESTTMP/.*[^)]$', winglobmsg),
148 (r'^ pushing subrepo \S+/\S+ to.*[^)]$', winglobmsg, 148 (r'^ pushing subrepo \S+/\S+ to.*[^)]$', winglobmsg),
149 '\$TESTTMP/unix-repo$'),
150 (r'^ moving \S+/.*[^)]$', winglobmsg), 149 (r'^ moving \S+/.*[^)]$', winglobmsg),
151 (r'^ no changes made to subrepo since.*/.*[^)]$', 150 (r'^ no changes made to subrepo since.*/.*[^)]$', winglobmsg),
152 winglobmsg, '\$TESTTMP/unix-repo$'), 151 (r'^ .*: largefile \S+ not available from file:.*/.*[^)]$', winglobmsg),
153 (r'^ .*: largefile \S+ not available from file:.*/.*[^)]$',
154 winglobmsg, '\$TESTTMP/unix-repo$'),
155 ], 152 ],
156 # warnings 153 # warnings
157 [ 154 [
158 (r'^ [^*?/\n]* \(glob\)$', 155 (r'^ [^*?/\n]* \(glob\)$',
159 "glob match with no glob character (?*/)"), 156 "glob match with no glob character (?*/)"),