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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
trackertestutils = dependency('tracker-testutils-3.0')
tracker_sandbox = find_program(trackertestutils.get_variable('command'))
tests = [
['test-file-utilities-get-common-filename-prefix', [
'test-file-utilities-get-common-filename-prefix.c'
]],
['test-eel-string-get-common-prefix', [
'test-eel-string-get-common-prefix.c'
]],
['test-file-utilities', [
'test-file-utilities.c'
]],
['test-file-operations-dir-has-files', [
'test-file-operations-dir-has-files.c'
]],
['test-file-operations-move-files', [
'test-file-operations-move-files.c'
]],
['test-nautilus-search-engine', [
'test-nautilus-search-engine.c'
]],
['test-nautilus-search-engine-simple', [
'test-nautilus-search-engine-simple.c'
]],
['test-nautilus-search-engine-model', [
'test-nautilus-search-engine-model.c'
]],
['test-file-operations-copy-files', [
'test-file-operations-copy-files.c'
]],
['test-file-operations-trash-or-delete', [
'test-file-operations-trash-or-delete.c'
]]
]
tracker_tests = [
['test-nautilus-search-engine-tracker', [
'test-nautilus-search-engine-tracker.c',
]],
]
foreach t: tests
test(
t[0],
executable(t[0], t[1], files('test-utilities.c'), dependencies: libnautilus_dep),
env: [
test_env,
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
],
timeout: 480
)
endforeach
# Tests that read and write from the Tracker index are run using 'tracker-sandbox'
# script to use a temporary instance of tracker-miner-fs instead of the session one.
foreach t: tracker_tests
test_exe = executable(t[0], t[1], files('test-utilities.c'), dependencies: libnautilus_dep)
test(
t[0],
tracker_sandbox,
args: ['--store-tmpdir', '--index-recursive-tmpdir', test_exe],
env: [
test_env,
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
],
timeout: 480
)
endforeach
|