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. --- tools/test-runner | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test-runner b/tools/test-runner index dd4cbf82..892e63ff 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -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: -- 2.31.1