aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-08-18 20:40:38 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-08-19 14:00:40 +0300
commite8932adb1468d085b45b93779bad1ee01b06adc0 (patch)
tree5eec74b4954fc62ad427279076b1b1acb5e65034 /run_project_tests.py
parent11b520feda966cafc12b9041bf455b7445774ed9 (diff)
downloadmeson-e8932adb1468d085b45b93779bad1ee01b06adc0.zip
meson-e8932adb1468d085b45b93779bad1ee01b06adc0.tar.gz
meson-e8932adb1468d085b45b93779bad1ee01b06adc0.tar.bz2
Do not scan test logs. Closes #4046.
Diffstat (limited to 'run_project_tests.py')
-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 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)