aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-03-20 22:52:46 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-03-20 22:52:46 +0200
commit5b3c9e262bd56cddac699bf480b96940ee3acf6a (patch)
tree3b301f4bc724537ed812638015b8d0dd4fe24c33 /run_tests.py
parentd87eb7d2905eaa9ed7bac60945821c7b039298d8 (diff)
downloadmeson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.zip
meson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.tar.gz
meson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.tar.bz2
Check option files too.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index cbc4e3d..c4f14ec 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -352,7 +352,7 @@ def check_file(fname):
def check_format():
for (root, _, files) in os.walk('.'):
for file in files:
- if file.endswith('.py') or file.endswith('.build'):
+ if file.endswith('.py') or file.endswith('.build') or file == 'meson_options.txt':
fullname = os.path.join(root, file)
check_file(fullname)