diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-18 20:40:38 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-19 14:00:40 +0300 |
commit | e8932adb1468d085b45b93779bad1ee01b06adc0 (patch) | |
tree | 5eec74b4954fc62ad427279076b1b1acb5e65034 | |
parent | 11b520feda966cafc12b9041bf455b7445774ed9 (diff) | |
download | meson-e8932adb1468d085b45b93779bad1ee01b06adc0.zip meson-e8932adb1468d085b45b93779bad1ee01b06adc0.tar.gz meson-e8932adb1468d085b45b93779bad1ee01b06adc0.tar.bz2 |
Do not scan test logs. Closes #4046.
-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 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) |