summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2021-03-22 01:30:32 +0100
committerCarlos Garnacho <carlosg@gnome.org>2021-03-22 13:34:13 +0100
commit15c0d7845740050346f050250d2b74d1f8b4a1bd (patch)
tree18291a8de32f0ac2aeca9e92bd7e25f4d25ed972 /meson_options.txt
parent555634df0b96370c5cf53dd62d8a8ad39f8ed013 (diff)
downloadtracker-15c0d7845740050346f050250d2b74d1f8b4a1bd.tar.gz
build: Add meson option to enable TAP protocol in tests
Together with our C tests we have our python functional test framework, which requires the use of TAPTestRunner from tap.py. Add a config switch, so that we don't need the python library (or behave strangely in functional tests without it) in developer setups, and can enable specifically in CI.
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 fc0810664..99c569502 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -24,3 +24,5 @@ option('test_utils', type: 'boolean', value: true,
description: 'Whether to install the trackertestutils Python package')
option('test_utils_dir', type: 'string', value: '',
description: 'Directory to install trackertestutils Python package (or empty to use the default)')
+option('tests_tap_protocol', type: 'boolean', value: false,
+ description: 'Whether to enable TAP protocol on tests')