From e8932adb1468d085b45b93779bad1ee01b06adc0 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 18 Aug 2018 20:40:38 +0300 Subject: Do not scan test logs. Closes #4046. --- run_project_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_project_tests.py b/run_project_tests.py index d3d43f2..a373aa0 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -660,7 +660,8 @@ def check_format(): continue for fname in files: if os.path.splitext(fname)[1].lower() in check_suffixes: - if os.path.split(fname)[1] == 'sitemap.txt': + bn = os.path.basename(fname) + if bn == 'sitemap.txt' or bn == 'meson-test-run.txt': continue fullname = os.path.join(root, fname) check_file(fullname) -- cgit v1.1