2020-08-28 19:07:19 +08:00
|
|
|
test_qapi_outputs = [
|
|
|
|
'qapi-builtin-types.c',
|
|
|
|
'qapi-builtin-types.h',
|
|
|
|
'qapi-builtin-visit.c',
|
|
|
|
'qapi-builtin-visit.h',
|
|
|
|
'test-qapi-commands-sub-sub-module.c',
|
|
|
|
'test-qapi-commands-sub-sub-module.h',
|
|
|
|
'test-qapi-commands.c',
|
|
|
|
'test-qapi-commands.h',
|
|
|
|
'test-qapi-emit-events.c',
|
|
|
|
'test-qapi-emit-events.h',
|
|
|
|
'test-qapi-events-sub-sub-module.c',
|
|
|
|
'test-qapi-events-sub-sub-module.h',
|
|
|
|
'test-qapi-events.c',
|
|
|
|
'test-qapi-events.h',
|
|
|
|
'test-qapi-init-commands.c',
|
|
|
|
'test-qapi-init-commands.h',
|
|
|
|
'test-qapi-introspect.c',
|
|
|
|
'test-qapi-introspect.h',
|
|
|
|
'test-qapi-types-sub-sub-module.c',
|
|
|
|
'test-qapi-types-sub-sub-module.h',
|
|
|
|
'test-qapi-types.c',
|
|
|
|
'test-qapi-types.h',
|
|
|
|
'test-qapi-visit-sub-sub-module.c',
|
|
|
|
'test-qapi-visit-sub-sub-module.h',
|
|
|
|
'test-qapi-visit.c',
|
|
|
|
'test-qapi-visit.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
test_qapi_files = custom_target('Test QAPI files',
|
|
|
|
output: test_qapi_outputs,
|
|
|
|
input: files('qapi-schema/qapi-schema-test.json',
|
|
|
|
'qapi-schema/include/sub-module.json',
|
|
|
|
'qapi-schema/sub-sub-module.json'),
|
|
|
|
command: [ qapi_gen, '-o', meson.current_build_dir(),
|
|
|
|
'-b', '-p', 'test-', '@INPUT0@' ],
|
|
|
|
depend_files: qapi_gen_depends)
|
|
|
|
|
|
|
|
# meson doesn't like generated output in other directories
|
|
|
|
# perhaps change qapi_gen to replace / with _, like Meson itself does?
|
|
|
|
subdir('include')
|
|
|
|
|
|
|
|
libtestqapi = static_library('testqapi', sources: [test_qapi_files, test_qapi_outputs_extra])
|
|
|
|
testqapi = declare_dependency(link_with: libtestqapi)
|
|
|
|
|
2020-01-28 21:49:18 +08:00
|
|
|
if have_system and 'CONFIG_POSIX' in config_host
|
|
|
|
subdir('qemu-iotests')
|
|
|
|
endif
|
|
|
|
|
2020-01-28 23:41:44 +08:00
|
|
|
test('decodetree', sh,
|
|
|
|
args: [ files('decode/check.sh'), config_host['PYTHON'], files('../scripts/decodetree.py') ],
|
|
|
|
workdir: meson.current_source_dir() / 'decode',
|
|
|
|
suite: 'decodetree')
|
2020-08-06 20:08:31 +08:00
|
|
|
|
|
|
|
if 'CONFIG_TCG' in config_host
|
|
|
|
subdir('fp')
|
2020-02-04 23:09:05 +08:00
|
|
|
if 'CONFIG_PLUGIN' in config_host
|
|
|
|
subdir('plugin')
|
|
|
|
endif
|
2020-08-06 20:08:31 +08:00
|
|
|
endif
|
2020-01-29 01:05:14 +08:00
|
|
|
|
|
|
|
subdir('qapi-schema')
|
2020-08-05 02:00:40 +08:00
|
|
|
subdir('qtest')
|