diff options
author | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2016-02-28 22:23:42 +0200 |
---|---|---|
committer | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2016-04-04 02:52:30 +0300 |
commit | 3f3fcace3d91da7d2643354e06a4b8d3c7143f86 (patch) | |
tree | 07052442b337aee52ab601ac86d3208efde0826d /mesonbuild/mconf.py | |
parent | 2eb392cdc03d09256cbe821bf5128130cf921fd0 (diff) | |
download | meson-3f3fcace3d91da7d2643354e06a4b8d3c7143f86.zip meson-3f3fcace3d91da7d2643354e06a4b8d3c7143f86.tar.gz meson-3f3fcace3d91da7d2643354e06a4b8d3c7143f86.tar.bz2 |
mconf: Include testing related options when printing build configuration.
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r-- | mesonbuild/mconf.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 5b963d5..3d38712 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -187,6 +187,13 @@ class Conf: choices = str(opt.choices); optarr.append([key, opt.description, opt.value, choices]) self.print_aligned(optarr) + print('') + print('Testing options:') + tarr = [] + for key in [ 'stdsplit', 'errorlogs' ]: + tarr.append([key, coredata.get_builtin_option_description(key), + self.coredata.get_builtin_option(key), coredata.get_builtin_option_choices(key)]) + self.print_aligned(tarr) def run(args): args = mesonlib.expand_arguments(args) |