From be69f0ffc83c909f1461056a17552cc700f8924f Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 13 Mar 2018 16:38:12 -0700 Subject: [PATCH] autorun_post: clean up cov_total.info files These aren't needed after the combined coverage information is generated. Change-Id: I4769cdf471b2b7a6502c3466ffb317c8435f1e3d Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/403748 Tested-by: SPDK Automated Test System Reviewed-by: Jim Harris --- autorun_post.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autorun_post.py b/autorun_post.py index e9e2a8e63..ba23d70d9 100755 --- a/autorun_post.py +++ b/autorun_post.py @@ -48,6 +48,8 @@ def generateCoverageReport(output_dir, repo_dir): except subprocess.CalledProcessError as e: print("genhtml failed", file=log_file) print(e, file=log_file) + for f in covfiles: + os.remove(f) def collectOne(output_dir, dir_name):