diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-04 14:06:38 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-04 14:22:34 +0530 |
commit | cb36843863e098752ce77965226fd864c6134a2a (patch) | |
tree | 1b40ee13c310635f72489b42feea1273e1583679 | |
parent | 268f73761205c55219b96e41debd2120a29b3c43 (diff) | |
download | meson-cb36843863e098752ce77965226fd864c6134a2a.zip meson-cb36843863e098752ce77965226fd864c6134a2a.tar.gz meson-cb36843863e098752ce77965226fd864c6134a2a.tar.bz2 |
failing tests: required : true is true implicitly
We need to test that the not-required then required case also works when
required is True implicitly.
-rw-r--r-- | test cases/failing/34 dependency not-required then required/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/failing/34 dependency not-required then required/meson.build b/test cases/failing/34 dependency not-required then required/meson.build index f33c41c..1796699 100644 --- a/test cases/failing/34 dependency not-required then required/meson.build +++ b/test cases/failing/34 dependency not-required then required/meson.build @@ -1,4 +1,4 @@ project('dep-test', 'c', version : '1.0') foo_dep = dependency('foo-bar-xyz-12.3', required : false) -bar_dep = dependency('foo-bar-xyz-12.3', required : true) +bar_dep = dependency('foo-bar-xyz-12.3') |