summaryrefslogtreecommitdiff
path: root/tests/functional-tests
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2019-10-01 03:52:14 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2019-10-01 03:55:02 +0200
commit92e5e33234f703c9351ac85b3cd19e1858ad3c7b (patch)
tree70094fbbb80407e9ef7dc95f323f16641e8ffbcf /tests/functional-tests
parent8a747ea71e3840cbd8e771ea5c6b17e2657fc7a9 (diff)
downloadtracker-92e5e33234f703c9351ac85b3cd19e1858ad3c7b.tar.gz
functional-tests: Enable FTS test only if enabled
Diffstat (limited to 'tests/functional-tests')
-rw-r--r--tests/functional-tests/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/functional-tests/meson.build b/tests/functional-tests/meson.build
index 48be0f55e..bf22d9cda 100644
--- a/tests/functional-tests/meson.build
+++ b/tests/functional-tests/meson.build
@@ -24,7 +24,6 @@ config_json = configure_file(
functional_tests = [
'01-insertion',
'02-sparql-bugs',
- '03-fts-functions',
'04-group-concat',
'05-coalesce',
'06-distance',
@@ -37,6 +36,10 @@ functional_tests = [
'17-ontology-changes',
]
+if get_option('fts')
+ functional_tests += '03-fts-functions'
+endif
+
test_env = environment()
tracker_uninstalled_testutils_dir = join_paths(meson.current_source_dir(), '..', '..', 'utils')