Skip to content
Snippets Groups Projects
Commit 7798e228 authored by Simon Glass's avatar Simon Glass
Browse files

buildman: Fix the logic for the bloat command


This check should now be done whatever mode buildman is running in, since
we may be displaying information while building.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 6b1978f8
No related branches found
No related tags found
No related merge requests found
...@@ -244,13 +244,13 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, ...@@ -244,13 +244,13 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
Print(GetActionSummary(options.summary, commits, board_selected, Print(GetActionSummary(options.summary, commits, board_selected,
options)) options))
# We can't show function sizes without board details at present
if options.show_bloat:
options.show_detail = True
builder.SetDisplayOptions(options.show_errors, options.show_sizes, builder.SetDisplayOptions(options.show_errors, options.show_sizes,
options.show_detail, options.show_bloat, options.show_detail, options.show_bloat,
options.list_error_boards) options.list_error_boards)
if options.summary: if options.summary:
# We can't show function sizes without board details at present
if options.show_bloat:
options.show_detail = True
builder.ShowSummary(commits, board_selected) builder.ShowSummary(commits, board_selected)
else: else:
fail, warned = builder.BuildBoards(commits, board_selected, fail, warned = builder.BuildBoards(commits, board_selected,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment