From: Paolo Bonzini Date: Wed, 13 Oct 2021 09:39:05 +0000 (+0200) Subject: meson: reenable test-fdmon-epoll X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7a82413dbd8275303e4df9822c213bca15c34e86;p=qemu.git 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 --- diff --git a/tests/unit/meson.build b/tests/unit/meson.build index acac3622ed..90acf5b0da 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