diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-21 12:33:27 +0100 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2021-01-21 08:54:35 -0500 |
| commit | adb1b2f3f6ad54b346348ec6e5b8d96f2f7ba0a6 (patch) | |
| tree | e18fe1b3cfb0f32b76ecaa456fdd3b0a2599b53d /test cases/unit | |
| parent | 021068a8b7461a62ed4ce68ab558bc94786e0550 (diff) | |
| download | meson-adb1b2f3f6ad54b346348ec6e5b8d96f2f7ba0a6.tar.gz | |
interpreter: accept external programs and dependencies for summary
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/73 summary/meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/unit/73 summary/meson.build b/test cases/unit/73 summary/meson.build index 1bc05ca71..50383b4d7 100644 --- a/test cases/unit/73 summary/meson.build +++ b/test cases/unit/73 summary/meson.build @@ -9,6 +9,11 @@ summary({'Some boolean': false, 'A list': ['string', 1, true], 'empty list': [], }, section: 'Configuration') +summary({'missing prog': find_program('xyzzy', required: false), + 'existing prog': import('python').find_installation(), + 'missing dep': dependency('', required: false), + 'internal dep': declare_dependency(), + }, section: 'Stuff') summary('A number', 1, section: 'Configuration') summary('yes', true, bool_yn : true, section: 'Configuration') summary('no', false, bool_yn : true, section: 'Configuration') |
