diff -r 29b35dac3b1f -r d955cebd8d6a tests/test-check-code.t --- a/tests/test-check-code.t Fri Nov 25 07:30:46 2016 -0800 +++ b/tests/test-check-code.t Fri Nov 25 09:55:05 2016 -0800 @@ -18,3 +18,20 @@ Skipping mercurial/httpclient/__init__.py it has no-che?k-code (glob) Skipping mercurial/httpclient/_readers.py it has no-che?k-code (glob) Skipping mercurial/statprof.py it has no-che?k-code (glob) + +@commands in debugcommands.py should be in alphabetical order. + + >>> import re + >>> commands = [] + >>> with open('mercurial/debugcommands.py', 'rb') as fh: + ... for line in fh: + ... m = re.match("^@command\('([a-z]+)", line) + ... if m: + ... commands.append(m.group(1)) + >>> scommands = list(sorted(commands)) + >>> for i, command in enumerate(scommands): + ... if command != commands[i]: + ... print('commands in debugcommands.py not sorted; first differing ' + ... 'command is %s; expected %s' % (commands[i], command)) + ... break + commands in debugcommands.py not sorted; first differing command is debugbuilddag; expected debugapplystreamclonebundle