meson: reenable test-fdmon-epoll
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 13 Oct 2021 09:39:05 +0000 (11:39 +0200)
committerPaolo 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

index acac3622edcb4c7f679446fc442cb8daa03bbc77..90acf5b0da5bf8306bc22ea77d5da707d61351ad 100644 (file)
@@ -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