mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
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:
parent
b89720ca47
commit
f9c2fa7bb2
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user