summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-06-21 15:23:07 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2019-06-22 22:11:28 +0300
commit80856884ccfb3f05afa35ba865c2464a464fd931 (patch)
tree614664a858cfcc31484ed5cba5837d87ad223cbe
parentd1dd6df37b3061d3595a25a2c12f04de235449a8 (diff)
downloadmeson-80856884ccfb3f05afa35ba865c2464a464fd931.tar.gz
Do not check for DOS line endings in log files.
-rwxr-xr-xrun_project_tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 3b62b5c57..585a700f6 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -779,6 +779,8 @@ def check_format():
for (root, _, files) in os.walk('.'):
if '.dub' in root: # external deps are here
continue
+ if 'meson-logs' in root or 'meson-private' in root:
+ continue
for fname in files:
if os.path.splitext(fname)[1].lower() in check_suffixes:
bn = os.path.basename(fname)