diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-26 22:19:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 22:19:12 +0200 |
commit | 2fb98144dd60bc974dda2c0e710fc4c41edd205e (patch) | |
tree | 91bc18be51daa16c0b6a1236e65e1c17056c8372 /run_unittests.py | |
parent | 5e2dd5b2e07858d3b87291f4abdaf886e15de0b8 (diff) | |
parent | ceb5e9f0420785799cbbc6167d224e89dcefb5ce (diff) | |
download | meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.zip meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.tar.gz meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.tar.bz2 |
Merge pull request #4546 from mensinda/buildopts
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': [], } |