summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-08-18 20:40:38 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-08-18 20:40:38 +0300
commitea05ff1c25905725906626a592cd8537a6454af9 (patch)
treea5e6ccbbe4572063c39a255a5c6e8b137c0908da
parent3290f8b952f06cb4dd46680ad68991906548f19d (diff)
downloadmeson-tabscan.tar.gz
Do not scan test logs. Closes #4046.tabscan
-rwxr-xr-xrun_project_tests.py3
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)