aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-01-06 14:41:26 +0200
committerGitHub <noreply@github.com>2018-01-06 14:41:26 +0200
commit6c97d8d94d603a07116224e29e5ab05f960f8de9 (patch)
tree08cf4fe35e8da3454e2747f025b3fb7ed68da1a4 /run_project_tests.py
parent711c3a28ba62a2030089f4ddadb0360a46fc30c1 (diff)
parentfd683a2b81ae6398674b21f2047f7db340a1e556 (diff)
downloadmeson-6c97d8d94d603a07116224e29e5ab05f960f8de9.zip
meson-6c97d8d94d603a07116224e29e5ab05f960f8de9.tar.gz
meson-6c97d8d94d603a07116224e29e5ab05f960f8de9.tar.bz2
Merge pull request #2879 from jon-turney/fix-boost-cygwin
Fix dependency('boost') on Cygwin
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 384dbcc..0bf5f31 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -495,12 +495,9 @@ def detect_tests_to_run():
if mesonlib.is_windows():
# TODO: Set BOOST_ROOT in .appveyor.yml
gathered_tests += [('framework', ['test cases/frameworks/1 boost'], 'BOOST_ROOT' not in os.environ)]
- elif mesonlib.is_osx():
+ elif mesonlib.is_osx() or mesonlib.is_cygwin():
# Just do the BOOST test
gathered_tests += [('framework', ['test cases/frameworks/1 boost'], False)]
- elif mesonlib.is_cygwin():
- # Skip all the framework tests
- gathered_tests += [('framework', gather_tests('test cases/frameworks'), True)]
else:
gathered_tests += [('framework', gather_tests('test cases/frameworks'), False)]
return gathered_tests