aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-01-02 22:17:23 +0200
committerGitHub <noreply@github.com>2018-01-02 22:17:23 +0200
commitc814f1145bc521efd0a46b033751a6f844d24df5 (patch)
tree2dbfc2a9b19b8d20b115adec8f7697e4840266cf /run_project_tests.py
parentad54bc372694cf7fc6e173e41c56418651aac9f0 (diff)
parentd5eeda56b3d22f95c9145d048362100196f6ccd2 (diff)
downloadmeson-c814f1145bc521efd0a46b033751a6f844d24df5.zip
meson-c814f1145bc521efd0a46b033751a6f844d24df5.tar.gz
meson-c814f1145bc521efd0a46b033751a6f844d24df5.tar.bz2
Merge pull request #2824 from bredelings/fix-boost
Fix boost on mac and linux: correctly search for boost and set -mt suffix when needed.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 323f9a3..384dbcc 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -495,7 +495,11 @@ 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() or mesonlib.is_cygwin():
+ elif mesonlib.is_osx():
+ # 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)]