mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
test-runner: warn on files left after test completes
This commit is contained in:
parent
2e55e00662
commit
670f063a30
@ -1179,6 +1179,10 @@ def post_test(ctx, to_copy):
|
|||||||
finally:
|
finally:
|
||||||
ctx.stop_test_processes()
|
ctx.stop_test_processes()
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
if ctx.args.valgrind:
|
if ctx.args.valgrind:
|
||||||
with open('/tmp/valgrind.log', 'r') as f:
|
with open('/tmp/valgrind.log', 'r') as f:
|
||||||
dbg(f.read())
|
dbg(f.read())
|
||||||
@ -1274,6 +1278,7 @@ def run_auto_tests(ctx, args):
|
|||||||
finally:
|
finally:
|
||||||
post_test(ctx, copied)
|
post_test(ctx, copied)
|
||||||
|
|
||||||
|
shutil.rmtree('/tmp/iwd')
|
||||||
shutil.rmtree('/tmp/certs')
|
shutil.rmtree('/tmp/certs')
|
||||||
shutil.rmtree('/tmp/secrets')
|
shutil.rmtree('/tmp/secrets')
|
||||||
os.remove('/tmp/phonesim.conf')
|
os.remove('/tmp/phonesim.conf')
|
||||||
|
Loading…
Reference in New Issue
Block a user