diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2023-05-02 14:41:34 -0400 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2023-05-19 19:12:12 +0200 |
commit | 844a12a63e12b1235a8fc17f9b278929dc6eb00e (patch) | |
tree | 5ae41dd88e391a253b88f5ef97ecd2de97aabcfe /tests/unit/meson.build | |
parent | 6d740fb01b9f0f5ea7a82f4d5e458d91940a19ee (diff) |
tested: add test for nested aio_poll() in poll handlers
Cc: qemu-stable@nongnu.org
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20230502184134.534703-3-stefanha@redhat.com>
[kwolf: Restrict to CONFIG_POSIX, Windows doesn't support polling]
Tested-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/unit/meson.build')
-rw-r--r-- | tests/unit/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build index 48ae66011b..3a6314269b 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -114,7 +114,10 @@ if have_block tests += {'test-crypto-xts': [crypto, io]} endif if 'CONFIG_POSIX' in config_host - tests += {'test-image-locking': [testblock]} + tests += { + 'test-image-locking': [testblock], + 'test-nested-aio-poll': [testblock], + } endif if config_host_data.get('CONFIG_REPLICATION') tests += {'test-replication': [testblock]} |