From c1c3cc6ad9acc555fd0a50ddbe255f7fcf5c6c83 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 1 Dec 2019 13:24:33 -0500 Subject: [PATCH] sanitycheck: output a sort list of tests Make --list-tests output a sorted list. Signed-off-by: Anas Nashif --- scripts/sanitycheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sanitycheck b/scripts/sanitycheck index 1d671962404..857052730e0 100755 --- a/scripts/sanitycheck +++ b/scripts/sanitycheck @@ -3812,7 +3812,7 @@ def main(): return elif options.list_tests: - for test in all_tests: + for test in sorted(all_tests): cnt = cnt + 1 print(" - {}".format(test)) print("{} total.".format(cnt))