aboutsummaryrefslogtreecommitdiff
path: root/tools/buildman/func_test.py
diff options
context:
space:
mode:
authorSimon Glass2023-07-19 17:48:25 -0600
committerSimon Glass2023-07-24 09:34:10 -0600
commit1aaaafadcca2cf6a4203784b8b2b1555c04919e8 (patch)
tree6813b64ae4d63934588b0a44b91513479adae6d8 /tools/buildman/func_test.py
parent4cab9aa65fc3b8c3dd39546bd817273e8332cbe7 (diff)
buildman: Sort the maintainer warnings
Sort the warnings into alphabetical order, for easier reading. Also make sure that the buildman test files are ignored. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/func_test.py')
-rw-r--r--tools/buildman/func_test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py
index 149551e6f33..c962083a43f 100644
--- a/tools/buildman/func_test.py
+++ b/tools/buildman/func_test.py
@@ -919,8 +919,9 @@ Active aarch64 armv8 - armltd total_compute board2
params_list, warnings = self._boards.build_board_list(config_dir, src)
self.assertEquals(2, len(params_list))
self.assertEquals(
- ['WARNING: orphaned defconfig in boards/board0/MAINTAINERS ending at line 4',
- "WARNING: no maintainers for 'board0'"], warnings)
+ ["WARNING: no maintainers for 'board0'",
+ 'WARNING: orphaned defconfig in boards/board0/MAINTAINERS ending at line 4',
+ ], warnings)
# Remove the maintainer line (M:) from a file (this should be fine)
lines = [line for line in orig_data.splitlines(keepends=True)