diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-02-01 10:33:59 +0100 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-02-01 11:21:16 +0100 |
commit | 31f00c11d32eff4b31516f4425f755f615ee6594 (patch) | |
tree | 0eab01958f8ea05e22a5b360b50c92e69cecba9c /test cases | |
parent | 402f7afdb03fa59b28e1c01b490b9673382f1ba4 (diff) | |
download | meson-31f00c11d32eff4b31516f4425f755f615ee6594.zip meson-31f00c11d32eff4b31516f4425f755f615ee6594.tar.gz meson-31f00c11d32eff4b31516f4425f755f615ee6594.tar.bz2 |
summary: Fix empty list case
Fixes: #6557.
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/unit/72 summary/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test cases/unit/72 summary/meson.build b/test cases/unit/72 summary/meson.build index c6d94d9..c155889 100644 --- a/test cases/unit/72 summary/meson.build +++ b/test cases/unit/72 summary/meson.build @@ -7,6 +7,7 @@ summary({'Some boolean': false, 'Another boolean': true, 'Some string': 'Hello World', 'A list': ['string', 1, true], + 'empty list': [], }, section: 'Configuration') summary('A number', 1, section: 'Configuration') summary('yes', true, bool_yn : true, section: 'Configuration') |