From 83b019a5330d3ead36bae7c3f251e8c0a87e67e5 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Fri, 2 Mar 2018 15:38:12 -0700 Subject: [PATCH] test/autorun_post: list tests that ran In addition to listing the tests that did not run, add a list of the tests that did run. Change-Id: Idf8b3583214a5e05c2d7f1a89a2ea60a2ef68432 Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/402389 Tested-by: SPDK Automated Test System Reviewed-by: Seth Howell Reviewed-by: Jim Harris --- autorun_post.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autorun_post.py b/autorun_post.py index 930578625..1296202db 100755 --- a/autorun_post.py +++ b/autorun_post.py @@ -104,6 +104,11 @@ def aggregateCompletedTests(output_dir, repo_dir): except KeyError: continue + print("\n\n-----Tests Executed in Build------") + for item in sorted(test_list): + if test_list[item][0]: + print(item) + print("\n\n-----Tests Missing From Build------") if not test_unit_with_valgrind: print("UNITTEST_WITH_VALGRIND\n")