Skip to content

Commit e3ba438

Browse files
committed
exhaust: sort builds list to have consistent results table
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
1 parent 83790ab commit e3ba438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exhaust.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def print_summary_table(out_prefix, total_tasks):
5252
['Project', 'Toolchain', 'Family', 'Part', 'Board', 'Options']
5353
]
5454
passed = failed = 0
55-
for build in builds:
55+
for build in sorted(builds):
5656
# Split directory name into columns
5757
# Example: oneblink_vpr_xc7_a35tcsg326-1_arty_options
5858
pattern = '([^_]*)_([^_]*)_([^_]*)_([^_]*)_([^_]*)_(.*)'

0 commit comments

Comments
 (0)