aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-09-24 22:24:27 -0700
committerGitHub <noreply@github.com>2018-09-24 22:24:27 -0700
commit9ceb21997b55c661388924dc86ed49f1e2b29708 (patch)
treeb3435411bcf9064c7ca7e2b97cc1b1db50a51669 /run_project_tests.py
parent48b6520764ad92a6ac4d830d84526e3dc64f8a22 (diff)
parent5262aac977c899fac0c24e9c8e0185b9dc28ada8 (diff)
downloadmeson-9ceb21997b55c661388924dc86ed49f1e2b29708.zip
meson-9ceb21997b55c661388924dc86ed49f1e2b29708.tar.gz
meson-9ceb21997b55c661388924dc86ed49f1e2b29708.tar.bz2
Merge pull request #4243 from nacho4d/feature/xcode-fix2
fixings for xcode backend
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 27e588b..ba7b5e0 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -393,6 +393,7 @@ def _run_test(testdir, test_build_dir, install_dir, extra_args, compiler, backen
def gather_tests(testdir: Path):
tests = [t.name for t in testdir.glob('*')]
+ tests = [t for t in tests if not t.startswith('.')] # Filter non-tests files (dot files, etc)
testlist = [(int(t.split()[0]), t) for t in tests]
testlist.sort()
tests = [testdir / t[1] for t in testlist]