sanitycheck: output a sort list of tests
Make --list-tests output a sorted list. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
70758c4374
commit
c1c3cc6ad9
1 changed files with 1 additions and 1 deletions
|
@ -3812,7 +3812,7 @@ def main():
|
||||||
return
|
return
|
||||||
|
|
||||||
elif options.list_tests:
|
elif options.list_tests:
|
||||||
for test in all_tests:
|
for test in sorted(all_tests):
|
||||||
cnt = cnt + 1
|
cnt = cnt + 1
|
||||||
print(" - {}".format(test))
|
print(" - {}".format(test))
|
||||||
print("{} total.".format(cnt))
|
print("{} total.".format(cnt))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue