blob: fe2c6d8e6b6bacd11ade5abc80c7a8d873cef99e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
if have_system and 'CONFIG_POSIX' in config_host
subdir('qemu-iotests')
endif
test('decodetree', sh,
args: [ files('decode/check.sh'), config_host['PYTHON'], files('../scripts/decodetree.py') ],
workdir: meson.current_source_dir() / 'decode',
suite: 'decodetree')
if 'CONFIG_TCG' in config_host
subdir('fp')
if 'CONFIG_PLUGIN' in config_host
subdir('plugin')
endif
endif
subdir('qapi-schema')
subdir('qtest')
|