summaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-07-20 23:32:55 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-08-20 22:04:53 +0300
commit7d62540263fabded41fea69b749c1ea65364d5ac (patch)
treea7126236036b2b8b4cbecda5822553620d68c304 /run_unittests.py
parente0120b4586225a41e08af936bf3e04f4db78ac6f (diff)
downloadmeson-nativeargs.tar.gz
Added "native" kwarg to add_XXX_args. Closes #3669.nativeargs
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
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: