From 4401eba3faa484f5cef31fe22e14bb65755c3e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 5 Sep 2022 16:27:07 +0200 Subject: [PATCH] test-my-pr: show libraries in log output --- tools/test-my-pr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test-my-pr.py b/tools/test-my-pr.py index 37385b2aa..0a8fd6857 100755 --- a/tools/test-my-pr.py +++ b/tools/test-my-pr.py @@ -129,7 +129,7 @@ if __name__ == "__main__": print("No files to process") continue - results_to_diff = [] + results_to_diff = list() main_crashed = False your_crashed = False @@ -188,6 +188,7 @@ if __name__ == "__main__": myfile.write(package + '\n') diff = lib.diff_results('main', results_to_diff[0], 'your', results_to_diff[1]) if diff != '': + myfile.write(f'libraries:{libraries}\n') myfile.write('diff:\n' + diff + '\n') with open(timing_file, 'a') as myfile: