summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2020-05-21 16:59:40 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2020-05-21 16:59:40 +0200
commitc56463fdb40ba505b807739b023e9489c6ac182d (patch)
tree5f5da532cf0af015a3b347c3ef0f150b84d14845 /meson_options.txt
parente72ecbf506874802784ced59a12dddb5fc92fe00 (diff)
downloadsystemd-c56463fdb40ba505b807739b023e9489c6ac182d.tar.gz
meson: add fuzz-tests= option
The slow-tests= option already enables fuzzers as well, however, this option can't be used in the "fully sanitized" runs, as certain slow tests are affected by the performance quite significantly. This option allows us to enable only fuzzers without the slow tests to meet the needs of such runs.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index e9fff1660c..d5ed2a7a42 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -351,6 +351,8 @@ 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')
+option('fuzz-tests', type : 'boolean', value : 'false',
+ description : 'run the fuzzer regression tests by default')
option('install-tests', type : 'boolean', value : 'false',
description : 'install test executables')