blob: cf4bdaba6374bc7603fe3b45358716753cf539f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# FIXME: prevent install during main install, but not during test :/
delay_execution = shared_module('delay_execution',
['delay_execution.c'],
kwargs: pg_mod_args,
)
testprep_targets += delay_execution
tests += {
'name': 'delay_execution',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'isolation': {
'specs': [
'partition-addition',
'partition-removal-1',
],
},
}
|