diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-13 11:39:05 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-12-18 10:57:36 +0100 |
commit | 7a82413dbd8275303e4df9822c213bca15c34e86 (patch) | |
tree | fbfb8cdae24deb7034b1664aeebf080f71d8aa27 /tests | |
parent | 5dce7b8d8ce6f397a2f2e46c236cc102d4e7a585 (diff) | |
download | qemu-7a82413dbd8275303e4df9822c213bca15c34e86.zip |
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')
-rw-r--r-- | tests/unit/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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 |