cc1838c25d
vhost-user-blk-test needs the qemu-storage-daemon, otherwise it currently hangs. So make sure that we build the daemon before running the tests. Message-Id: <20210811094705.131314-1-thuth@redhat.com> Tested-by: Alexander Bulekov <alxndr@bu.edu> Signed-off-by: Thomas Huth <thuth@redhat.com>
14 lines
384 B
Meson
14 lines
384 B
Meson
qsd_ss = ss.source_set()
|
|
qsd_ss.add(files('qemu-storage-daemon.c'))
|
|
qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil, gnutls)
|
|
|
|
subdir('qapi')
|
|
|
|
if have_tools
|
|
qsd_ss = qsd_ss.apply(config_host, strict: false)
|
|
qsd = executable('qemu-storage-daemon',
|
|
qsd_ss.sources(),
|
|
dependencies: qsd_ss.dependencies(),
|
|
install: true)
|
|
endif
|