summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 88c0ea009cb9a94b6b5f1b41d5cb4d2b2cddf3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
tests = []

test_bus_conf_file = configure_file(
  input: 'test-bus.conf.in',
  output: 'test-bus.conf',
  configuration: conf)

subdir('common')

subdir('gvdb')
subdir('fts')
subdir('core')
subdir('libtracker-common')
subdir('libtracker-sparql')
subdir('functional-tests')
subdir('services')

if get_option('tests_tap_protocol')
  protocol = 'tap'
else
  protocol = 'exitcode'
endif

foreach t: tests
  test_name = t.get('name')
  test_exe = t.get('exe')
  test_suite = t.get('suite', [])
  test_timeout = t.get('timeout', 30)
  test_env = t.get('env', {})

  # This flag marks unit tests which can't run alongside other unit tests. It
  # generally indicates a bug or design flaw in that test.
  test_is_parallel = t.get('is_parallel', true)

  env = environment()
  env.set('TRACKER_LANGUAGE_STOP_WORDS_DIR', join_paths(source_root, 'src', 'libtracker-common', 'stop-words'))
  env.set('LANG', 'en_US.UTF8')
  env.set('TRACKER_DEBUG', 'fts-integrity')

  foreach envvar_name, envvar_val: test_env
    env.set(envvar_name, envvar_val)
  endforeach

  test(test_name, test_exe,
    env: env,
    timeout: test_timeout,
    protocol: protocol,
    suite: test_suite,
    is_parallel: test_is_parallel)
endforeach