diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-18 20:40:38 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-18 20:40:38 +0300 |
commit | ea05ff1c25905725906626a592cd8537a6454af9 (patch) | |
tree | a5e6ccbbe4572063c39a255a5c6e8b137c0908da | |
parent | 3290f8b952f06cb4dd46680ad68991906548f19d (diff) | |
download | meson-tabscan.tar.gz |
Do not scan test logs. Closes #4046.tabscan
-rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index e6c77b05f..06ff034fd 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) |