test-runner: remove stale file after test

test-runner will print out if files were left behind after a
test which lets the developer know something was not cleaned
up. But in this case test-runner should also remove these files
so they are not left, and printed, for each subsequent test.
This commit is contained in:
James Prestwood 2021-05-07 13:26:20 -07:00 committed by Denis Kenzior
parent b89720ca47
commit f9c2fa7bb2
1 changed files with 1 additions and 0 deletions

View File

@ -1186,6 +1186,7 @@ def post_test(ctx, to_copy):
allowed = ['phonesim.conf', 'certs', 'secrets', 'iwd']
for f in [f for f in os.listdir('/tmp') if f not in allowed]:
dbg("File %s was not cleaned up!" % f)
os.remove('/tmp/' + f)
if ctx.args.valgrind:
with open('/tmp/valgrind.log', 'r') as f: