diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-20 22:52:46 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-20 22:52:46 +0200 |
commit | 5b3c9e262bd56cddac699bf480b96940ee3acf6a (patch) | |
tree | 3b301f4bc724537ed812638015b8d0dd4fe24c33 | |
parent | d87eb7d2905eaa9ed7bac60945821c7b039298d8 (diff) | |
download | meson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.zip meson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.tar.gz meson-5b3c9e262bd56cddac699bf480b96940ee3acf6a.tar.bz2 |
Check option files too.
-rwxr-xr-x | run_tests.py | 2 |
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) |