diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-11-24 09:49:33 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-11-24 09:49:33 +0100 |
commit | 1f48aa595d53334a2cf2c5c9c14cb28a7b4ccbbc (patch) | |
tree | 711f2bef422b4938fdf1b5f3e97094a13825d124 /run_unittests.py | |
parent | 1c8c888854e2c3ad2fbfeb3229520b8a6d3c1799 (diff) | |
download | meson-1f48aa595d53334a2cf2c5c9c14cb28a7b4ccbbc.zip meson-1f48aa595d53334a2cf2c5c9c14cb28a7b4ccbbc.tar.gz meson-1f48aa595d53334a2cf2c5c9c14cb28a7b4ccbbc.tar.bz2 |
Added 'section' key to buildoptions introspection
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index a8371ad..b99bc05 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2253,6 +2253,7 @@ int main(int argc, char **argv) { expected = { 'name': 'list', 'description': 'list', + 'section': 'user', 'type': 'array', 'value': ['foo', 'bar'], } @@ -2277,6 +2278,7 @@ int main(int argc, char **argv) { expected = { 'name': 'list', 'description': 'list', + 'section': 'user', 'type': 'array', 'value': ['foo', 'bar'], } @@ -2301,6 +2303,7 @@ int main(int argc, char **argv) { expected = { 'name': 'list', 'description': 'list', + 'section': 'user', 'type': 'array', 'value': [], } |