diff options
-rwxr-xr-x | run_project_tests.py | 4 |
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 |