From c67b6245417247d2b865f776f00aa0e3b415e549 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 6 Aug 2021 15:16:49 -0400 Subject: Fix --force-fallack-for with --wrap-mode=nofallback Fixes: #9065 --- mesonbuild/interpreter/dependencyfallbacks.py | 8 ++++---- run_unittests.py | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/mesonbuild/interpreter/dependencyfallbacks.py b/mesonbuild/interpreter/dependencyfallbacks.py index 2639e42..5934cbd 100644 --- a/mesonbuild/interpreter/dependencyfallbacks.py +++ b/mesonbuild/interpreter/dependencyfallbacks.py @@ -105,13 +105,13 @@ class DependencyFallbacksHolder(MesonInterpreterObject): return None def _do_subproject(self, kwargs: TYPE_nkwargs, func_args: TYPE_nvar, func_kwargs: TYPE_nkwargs) -> T.Optional[Dependency]: - if self.nofallback: - mlog.log('Not looking for a fallback subproject for the dependency', - mlog.bold(self.display_name), 'because:\nUse of fallback dependencies is disabled.') - return None if self.forcefallback: mlog.log('Looking for a fallback subproject for the dependency', mlog.bold(self.display_name), 'because:\nUse of fallback dependencies is forced.') + elif self.nofallback: + mlog.log('Not looking for a fallback subproject for the dependency', + mlog.bold(self.display_name), 'because:\nUse of fallback dependencies is disabled.') + return None else: mlog.log('Looking for a fallback subproject for the dependency', mlog.bold(self.display_name)) diff --git a/run_unittests.py b/run_unittests.py index 958b433..91f3f3c 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2775,6 +2775,12 @@ class AllPlatformTests(BasePlatformTests): self.build() self.run_tests() + def test_force_fallback_for_nofallback(self): + testdir = os.path.join(self.unit_test_dir, '31 forcefallback') + self.init(testdir, extra_args=['--force-fallback-for=zlib,foo', '--wrap-mode=nofallback']) + self.build() + self.run_tests() + def test_testrepeat(self): testdir = os.path.join(self.common_test_dir, '206 tap tests') self.init(testdir) -- cgit v1.1