mirror of https://github.com/xemu-project/xemu.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 <pbonzini@redhat.com>
This commit is contained in:
parent
5dce7b8d8c
commit
7a82413dbd
|
@ -112,7 +112,7 @@ if have_block
|
||||||
if nettle.found() or gcrypt.found()
|
if nettle.found() or gcrypt.found()
|
||||||
tests += {'test-crypto-pbkdf': [io]}
|
tests += {'test-crypto-pbkdf': [io]}
|
||||||
endif
|
endif
|
||||||
if 'CONFIG_EPOLL_CREATE1' in config_host
|
if config_host_data.get('CONFIG_EPOLL_CREATE1')
|
||||||
tests += {'test-fdmon-epoll': [testblock]}
|
tests += {'test-fdmon-epoll': [testblock]}
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue