aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-01-31 18:29:30 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2019-02-01 00:14:09 +0530
commit042f5638bf3841f71abb7a05807bb055c3aa6439 (patch)
tree25a4071a0bd7bbb3796a871ffa1e9dd432af5963
parentbd8eff74385c317c14dfd28a13c592e096bead8e (diff)
downloadmeson-042f5638bf3841f71abb7a05807bb055c3aa6439.zip
meson-042f5638bf3841f71abb7a05807bb055c3aa6439.tar.gz
meson-042f5638bf3841f71abb7a05807bb055c3aa6439.tar.bz2
project tests: qt is available on the macOS CI
-rwxr-xr-xrun_project_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 4c6ca3b..d10f3a2 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -496,6 +496,10 @@ def skippable(suite, test):
return 'BOOST_ROOT' not in os.environ
return False
+ # Qt is provided on macOS by Homebrew
+ if test.endswith('4 qt') and mesonlib.is_osx():
+ return False
+
# Other framework tests are allowed to be skipped on other platforms
return True