diff options
author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2017-12-31 21:09:02 -0800 |
---|---|---|
committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-01-01 22:43:28 -0800 |
commit | b260d5a4657481ca4810a6ee806d38ae6a638850 (patch) | |
tree | 393500d6f3d3dc133e8c1716468ea380d0abdaa1 /run_project_tests.py | |
parent | 62bec86aa6a0c8e33ef32e43cee0e61bdd110851 (diff) | |
download | meson-b260d5a4657481ca4810a6ee806d38ae6a638850.zip meson-b260d5a4657481ca4810a6ee806d38ae6a638850.tar.gz meson-b260d5a4657481ca4810a6ee806d38ae6a638850.tar.bz2 |
Run the boost test on osx on travis.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 6 |
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)] |