diff -r ad2c5561cada -r 3aee6e26b28b tests/test-commandserver.py --- a/tests/test-commandserver.py Mon Nov 21 00:39:32 2011 +0100 +++ b/tests/test-commandserver.py Mon Nov 21 00:39:32 2011 +0100 @@ -26,6 +26,7 @@ return channel, server.stdout.read(length) def runcommand(server, args, output=sys.stdout, error=sys.stderr, input=None): + print ' runcommand', ' '.join(args) server.stdin.write('runcommand\n') writeblock(server, '\0'.join(args)) @@ -52,6 +53,9 @@ return def check(func, repopath=None): + print + print 'testing %s:' % func.__name__ + print server = connect(repopath) try: return func(server)