aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-10-13 11:39:05 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2021-12-18 10:57:36 +0100
commit7a82413dbd8275303e4df9822c213bca15c34e86 (patch)
treefbfb8cdae24deb7034b1664aeebf080f71d8aa27 /tests/unit
parent5dce7b8d8ce6f397a2f2e46c236cc102d4e7a585 (diff)
downloadqemu-7a82413dbd8275303e4df9822c213bca15c34e86.zip
qemu-7a82413dbd8275303e4df9822c213bca15c34e86.tar.gz
qemu-7a82413dbd8275303e4df9822c213bca15c34e86.tar.bz2
meson: reenable test-fdmon-epoll
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>
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build
index acac362..90acf5b 100644
--- 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