Skip to content

Commit

Permalink
test/autorun_post: list tests that ran
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-on: https://review.gerrithub.io/402389
Tested-by: SPDK Automated Test System <[email protected]>
Reviewed-by: Seth Howell <[email protected]>
Reviewed-by: Jim Harris <[email protected]>
  • Loading branch information
danielverkamp committed Mar 9, 2018
1 parent 7448f89 commit 83b019a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions autorun_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 83b019a

Please sign in to comment.