# HG changeset patch # User Augie Fackler # Date 1468119843 14400 # Node ID 57106f357cd1811fced0438af6bb6a3a8751d711 # Parent fe7158fced4ba3b09ad5654eac3a00a4974834bd check-code: enforce (glob) on output lines containing 127.0.0.1 diff -r fe7158fced4b -r 57106f357cd1 contrib/check-code.py --- a/contrib/check-code.py Sat Jul 09 23:03:45 2016 -0400 +++ b/contrib/check-code.py Sat Jul 09 23:04:03 2016 -0400 @@ -189,6 +189,8 @@ (r'^ .*: largefile \S+ not available from file:.*/.*[^)]$', winglobmsg), (r'^ .*file://\$TESTTMP', 'write "file:/*/$TESTTMP" + (glob) to match on windows too'), + (r'^ [^$>].*27\.0\.0\.1.*[^)]$', + 'use (glob) to match localhost IP on hosts without 127.0.0.1 too'), (r'^ (cat|find): .*: No such file or directory', 'use test -f to test for file existence'), (r'^ diff -[^ -]*p', @@ -207,8 +209,8 @@ ], # warnings [ - (r'^ [^*?/\n]* \(glob\)$', - "glob match with no glob character (?*/)"), + (r'^ (?!.*127\.0\.0\.1)[^*?/\n]* \(glob\)$', + "glob match with no glob string (?, *, /, and 127.0.0.1)"), ] ]