diff options
author | Adam Duskett <Aduskett@gmail.com> | 2018-01-15 06:25:46 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-01-15 15:25:46 +0400 |
commit | 08318a2c5acb3d0e4243c36461e69a3e45482441 (patch) | |
tree | ec5ef299678f15f4ed5da39a891d830b68b6f055 /meson_options.txt | |
parent | 38edb7674bc22551f7c7ac010b296406ce25e7f1 (diff) | |
download | systemd-08318a2c5acb3d0e4243c36461e69a3e45482441.tar.gz systemd-08318a2c5acb3d0e4243c36461e69a3e45482441.tar.bz2 systemd-08318a2c5acb3d0e4243c36461e69a3e45482441.zip |
add false option for tests (#7778)
Currently there is no way to prevent tests from building using meson.
This introduces two problems:
1) It adds a extra 381 files to compile.
2) One of these tests explicitly requires libgcrypt to be built even if systemd
is not using it.
3) It adds C++ to the requirements to build systemd.
When cross-compiling, this is uneccessary.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index f71755cfa6..af8be576a1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -285,7 +285,7 @@ option('bashcompletiondir', type : 'string', option('zshcompletiondir', type : 'string', description : 'directory for zsh completion scripts ["no" disables]') -option('tests', type : 'combo', choices : ['true', 'unsafe'], +option('tests', type : 'combo', choices : ['true', 'unsafe', 'false'], description : 'enable extra tests with =unsafe') option('slow-tests', type : 'boolean', value : 'false', description : 'run the slow tests by default') |