diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-06-05 08:33:36 -0700 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-29 10:56:25 +0000 |
commit | f3a8f9c34d95d862fb4d12869a7b31cea592561f (patch) | |
tree | c6670c6aeee48e39874377104d945467366a8443 /run_unittests.py | |
parent | 14fe0985f7ac6cce317e355ae457e7cf5fbb8ee4 (diff) | |
download | meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.zip meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.tar.gz meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.tar.bz2 |
Options: treat array option -Dopt= and -Dopt=[] as equivalent
Currently the former will be parsed as [''], while the latter is parsed
as [] in python. This makes for some obnoxious special handling
depending on what the user passes. This is even more obnoxious since for
string type arguments this doesn't require special handling.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 4cfb743..0abe419 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1786,6 +1786,26 @@ int main(int argc, char **argv) { changed = get_opt() self.assertDictEqual(changed, expected) + def test_array_option_empty_equivalents(self): + """Array options treat -Dopt=[] and -Dopt= as equivalent.""" + def get_opt(): + opts = self.introspect('--buildoptions') + for x in opts: + if x.get('name') == 'list': + return x + raise Exception(opts) + + expected = { + 'name': 'list', + 'description': 'list', + 'type': 'array', + 'value': [], + } + tdir = os.path.join(self.unit_test_dir, '18 array option') + self.init(tdir, extra_args='-Dlist=') + original = get_opt() + self.assertDictEqual(original, expected) + def opt_has(self, name, value): res = self.introspect('--buildoptions') found = False |