summaryrefslogtreecommitdiff
path: root/tests/functional-tests/meson.build
blob: 8261e1427b0b9964578cb6ebb7341c5824da2c4a (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
subdir('ipc')

test_runner = find_program('test-runner.sh')

functional_tests = [
  '01-insertion',
  '02-sparql-bugs',
  '03-fts-functions',
  '04-group-concat',
  '05-coalesce',
  '06-distance',
  '07-graph',
  '08-unique-insertions',
  '09-concurrent-query',
  '10-sqlite-misused',
  '11-sqlite-batch-misused',
  '12-transactions',
  '13-threaded-store',
  '14-signals',
  '15-statistics',
  '16-collation',
  '17-ontology-changes',
  '200-backup-restore',
]

foreach t: functional_tests
  test('functional-' + t, test_runner,
    args: './' + t + '.py',
    workdir: meson.current_source_dir(),
    # FIXME: these tests are all too slow
    timeout: 180)
endforeach