buildman: Show the list of boards in magenta

It is quite hard to see the list of board for each error line since the
colour is the same as the actual error line. Show the board list in
magenta so that it is easier to distinguish them.

There is no point in checking the colour of the overall line, since there
are now multiple colours. So drop those tests.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-04-09 15:08:37 -06:00
parent 35d696dbe5
commit 8c9a2674ee
2 changed files with 44 additions and 41 deletions

View file

@ -1249,13 +1249,20 @@ class Builder:
colour: Colour to use for output
"""
if err_lines:
out = []
out_list = []
for line in err_lines:
boards = ''
names = [board.target for board in line.boards]
boards = '(%s) ' % ','.join(names) if names else ''
out.append('%s%s%s' % (line.char, boards, line.errline))
Print('\n'.join(out), colour=colour)
board_str = ','.join(names) if names else ''
if board_str:
out = self.col.Color(colour, line.char + '(')
out += self.col.Color(self.col.MAGENTA, board_str,
bright=False)
out += self.col.Color(colour, ') %s' % line.errline)
else:
out = self.col.Color(colour, line.char + line.errline)
out_list.append(out)
Print('\n'.join(out_list))
self._error_lines += 1