diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-08-06 15:16:49 -0400 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-08-07 11:20:57 +0200 |
commit | 943596abbb1cba5b6b00051505df4ddd2480aee0 (patch) | |
tree | b42028ceb9fdc204f83d1a534ad4236caf6fb4bc /unittests/allplatformstests.py | |
parent | 1dcde9da61205f762ee4f1880732b18ee7360389 (diff) | |
download | meson-943596abbb1cba5b6b00051505df4ddd2480aee0.zip meson-943596abbb1cba5b6b00051505df4ddd2480aee0.tar.gz meson-943596abbb1cba5b6b00051505df4ddd2480aee0.tar.bz2 |
Fix --force-fallack-for with --wrap-mode=nofallback
Fixes: #9065
Diffstat (limited to 'unittests/allplatformstests.py')
-rw-r--r-- | unittests/allplatformstests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index bd1e3fa..b7881f6 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -556,6 +556,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) |