blob: 80d8adda33223ea4ef6c061fa0d4be936595d733 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# FIXME: prevent install during main install, but not during test :/
test_rls_hooks = shared_module('test_rls_hooks',
['test_rls_hooks.c'],
kwargs: pg_mod_args,
)
testprep_targets += test_rls_hooks
tests += {
'name': 'test_rls_hooks',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'regress': {
'sql': [
'test_rls_hooks',
],
},
}
|