summaryrefslogtreecommitdiff
path: root/tools/buildman/test.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-09 15:08:38 -0600
committerSimon Glass <sjg@chromium.org>2020-04-21 06:33:47 -0600
commit9ef0ceb7308c710a54bc900ea57a233c9e716b2d (patch)
tree11f03fe841b1d30a925e315164067908fcae6ebe /tools/buildman/test.py
parent8c9a2674ee3669a6743e3e5133c87c7ee23a320e (diff)
buildman: Use spaces in the board list
At present the board names shown with -l are separated by commas. This makes it hard to double-click to select a particular board. Also it is not possible to select all boards and paste them as arguments to a subsequent buildman run, since buildman requires spaces to separate the list on the command line, not commas. Change the output format to use spaces instead of commas. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/test.py')
-rw-r--r--tools/buildman/test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/buildman/test.py b/tools/buildman/test.py
index a64372dee3..a495df0303 100644
--- a/tools/buildman/test.py
+++ b/tools/buildman/test.py
@@ -249,9 +249,9 @@ class TestBuild(unittest.TestCase):
new_lines.append(expect)
return '\n'.join(new_lines)
- boards1234 = 'board1,board2,board3,board4' if list_error_boards else ''
- boards234 = 'board2,board3,board4' if list_error_boards else ''
- boards34 = 'board3,board4' if list_error_boards else ''
+ boards1234 = 'board1 board2 board3 board4' if list_error_boards else ''
+ boards234 = 'board2 board3 board4' if list_error_boards else ''
+ boards34 = 'board3 board4' if list_error_boards else ''
boards4 = 'board4' if list_error_boards else ''
# Upstream commit: no errors