diff options
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/unit/27 forcefallback/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test cases/unit/27 forcefallback/meson.build b/test cases/unit/27 forcefallback/meson.build index e6a90eae5..d5c06c342 100644 --- a/test cases/unit/27 forcefallback/meson.build +++ b/test cases/unit/27 forcefallback/meson.build @@ -2,7 +2,8 @@ project('mainproj', 'c', default_options : ['wrap_mode=forcefallback']) zlib_dep = dependency('zlib', fallback: ['notzlib', 'zlib_dep']) +notfound_dep = dependency('cannotabletofind', fallback: ['definitelynotfound', 'some_var'], required : false) -test_not_zlib = executable('test_not_zlib', ['test_not_zlib.c'], dependencies: [zlib_dep]) +test_not_zlib = executable('test_not_zlib', ['test_not_zlib.c'], dependencies: [zlib_dep, notfound_dep]) test('test_not_zlib', test_not_zlib) |
