summaryrefslogtreecommitdiffstats
path: root/storage-daemon
diff options
context:
space:
mode:
authorThomas Huth2021-08-11 11:47:05 +0200
committerThomas Huth2021-08-11 13:39:50 +0200
commitcc1838c25d55e7f478cd493431679337e24e1b72 (patch)
treece0f93b8f5cc6f2aaa049656a6d7524ec571546f /storage-daemon
parentgitlab: skip many more targets in windows cross builds (diff)
downloadqemu-cc1838c25d55e7f478cd493431679337e24e1b72.tar.gz
qemu-cc1838c25d55e7f478cd493431679337e24e1b72.tar.xz
qemu-cc1838c25d55e7f478cd493431679337e24e1b72.zip
storage-daemon: Add missing build dependency to the vhost-user-blk-test
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>
Diffstat (limited to 'storage-daemon')
-rw-r--r--storage-daemon/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage-daemon/meson.build b/storage-daemon/meson.build
index 68852f3d25..49c9d2eac9 100644
--- a/storage-daemon/meson.build
+++ b/storage-daemon/meson.build
@@ -6,8 +6,8 @@ subdir('qapi')
if have_tools
qsd_ss = qsd_ss.apply(config_host, strict: false)
- executable('qemu-storage-daemon',
- qsd_ss.sources(),
- dependencies: qsd_ss.dependencies(),
- install: true)
+ qsd = executable('qemu-storage-daemon',
+ qsd_ss.sources(),
+ dependencies: qsd_ss.dependencies(),
+ install: true)
endif