diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-20 23:32:55 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-20 22:04:53 +0300 |
commit | 7d62540263fabded41fea69b749c1ea65364d5ac (patch) | |
tree | a7126236036b2b8b4cbecda5822553620d68c304 /run_unittests.py | |
parent | e0120b4586225a41e08af936bf3e04f4db78ac6f (diff) | |
download | meson-nativeargs.tar.gz |
Added "native" kwarg to add_XXX_args. Closes #3669.nativeargs
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 2e29af7dc..7699d6b9f 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -672,6 +672,8 @@ class DataTests(unittest.TestCase): self.assertTrue(snippet_dir.is_dir()) for f in snippet_dir.glob('*'): self.assertTrue(f.is_file()) + if f.parts[-1].endswith('~'): + continue if f.suffix == '.md': with f.open() as snippet: for line in snippet: |