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
|
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
delay_execution_sources = files(
'delay_execution.c',
)
if host_system == 'windows'
delay_execution_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
'--NAME', 'delay_execution',
'--FILEDESC', 'delay_execution - allow delay between parsing and execution',])
endif
delay_execution = shared_module('delay_execution',
delay_execution_sources,
kwargs: pg_test_mod_args,
)
test_install_libs += delay_execution
tests += {
'name': 'delay_execution',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'isolation': {
'specs': [
'partition-addition',
'partition-removal-1',
],
},
}
|