aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/test_rbtree/meson.build
blob: 34cbc3e1624cdec723a32aee39b1d426d1647ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# FIXME: prevent install during main install, but not during test :/
test_rbtree = shared_module('test_rbtree',
  ['test_rbtree.c'],
  kwargs: pg_mod_args,
)
testprep_targets += test_rbtree

install_data(
  'test_rbtree.control',
  'test_rbtree--1.0.sql',
  kwargs: contrib_data_args,
)

tests += {
  'name': 'test_rbtree',
  'sd': meson.current_source_dir(),
  'bd': meson.current_build_dir(),
  'regress': {
    'sql': [
      'test_rbtree',
    ],
  },
}