aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-12-16 19:35:34 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-12-16 19:35:34 +0200
commit83c12edde9b37f46680209123cf301442706a7e7 (patch)
treeacf22ad23ecca33f842893fc161193220ef96a48 /run_project_tests.py
parentc208e81e1a47b54a1efb536e164b06275ddd7cd9 (diff)
downloadmeson-endmessage.zip
meson-endmessage.tar.gz
meson-endmessage.tar.bz2
Add end_message to print status messages on successfull exit.endmessage
Diffstat (limited to 'run_project_tests.py')
-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 0d64f47..0245148 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -697,6 +697,8 @@ def check_format():
if '.dub' in root: # external deps are here
continue
for fname in files:
+ if fname.startswith('.#') or fname.startswith('#'): # Emacs temp files.
+ continue
if os.path.splitext(fname)[1].lower() in check_suffixes:
bn = os.path.basename(fname)
if bn == 'sitemap.txt' or bn == 'meson-test-run.txt':