projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5dce7b8
)
meson: reenable test-fdmon-epoll
author
Paolo Bonzini
<pbonzini@redhat.com>
Wed, 13 Oct 2021 09:39:05 +0000
(11:39 +0200)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Sat, 18 Dec 2021 09:57:36 +0000
(10:57 +0100)
The test was disabled when CONFIG_EPOLL_CREATE1 was moved out
of config-host.mak. Fix the condition.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tests/unit/meson.build
patch
|
blob
|
history
diff --git
a/tests/unit/meson.build
b/tests/unit/meson.build
index acac3622edcb4c7f679446fc442cb8daa03bbc77..90acf5b0da5bf8306bc22ea77d5da707d61351ad 100644
(file)
--- a/
tests/unit/meson.build
+++ b/
tests/unit/meson.build
@@
-112,7
+112,7
@@
if have_block
if nettle.found() or gcrypt.found()
tests += {'test-crypto-pbkdf': [io]}
endif
- if
'CONFIG_EPOLL_CREATE1' in config_host
+ if
config_host_data.get('CONFIG_EPOLL_CREATE1')
tests += {'test-fdmon-epoll': [testblock]}
endif
endif