summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam@afuera.me.uk>2018-07-15 19:00:24 +0200
committerSam Thursfield <sam@afuera.me.uk>2018-07-16 16:26:32 +0200
commit7e52f684aa2e88b0106fe327103e7939b2dd5349 (patch)
treed53e6c6458ea529a295385241e4390b7c3876441
parent16287df1951c3a49b210b0b3492345232e41f633 (diff)
downloadtracker-7e52f684aa2e88b0106fe327103e7939b2dd5349.tar.gz
functional-tests: Disable sqlite-misused tests as they are super slow
-rw-r--r--tests/functional-tests/meson.build9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/functional-tests/meson.build b/tests/functional-tests/meson.build
index 1ced791ae..69cd6df2d 100644
--- a/tests/functional-tests/meson.build
+++ b/tests/functional-tests/meson.build
@@ -26,11 +26,13 @@ functional_tests = [
subdir('ttl')
functional_tests_with_test_data = [
- '10-sqlite-misused',
- '11-sqlite-batch-misused',
'13-threaded-store',
]
+# These tests are disabled by default as they are really slow.
+# '10-sqlite-misused',
+# '11-sqlite-batch-misused',
+
config_json_full_path = join_paths(meson.current_build_dir(), 'configuration.json')
dconf_profile_full_path = join_paths(meson.current_source_dir(), 'trackertest')
tracker_nepomuk_ontologies = join_paths(meson.current_source_dir(), '..', '..', 'src', 'ontologies', 'nepomuk')
@@ -51,8 +53,7 @@ foreach t: functional_tests + functional_tests_with_test_data
args: './' + t + '.py',
env: test_env,
workdir: meson.current_source_dir(),
- # FIXME: these tests are all too slow
- timeout: 180)
+ timeout: 60)
endforeach
subdir('ipc')