diff options
author | Hrvoje Zeba <zeba.hrvoje@gmail.com> | 2019-11-25 11:00:30 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-11-25 11:03:22 -0700 |
commit | 8f087e9031d23708047108ca2ce2f4a5444c3fd2 (patch) | |
tree | 20104373b3fe78dbc6ab9971a597a5523ce3e1ce /test/Makefile | |
parent | b5837bd5311d5f0cbc581ff7a492600f6a8d9812 (diff) | |
download | liburing-8f087e9031d23708047108ca2ce2f4a5444c3fd2.tar.gz liburing-8f087e9031d23708047108ca2ce2f4a5444c3fd2.tar.bz2 |
Add a regression test for behavior before commit b5837bd5311d
This test checks for io_submit_and_wait() behavior where before the
specified commit, this function would cap wait_nr parameter and would
ignore any sqes submited in previous calls.
Signed-off-by: Hrvoje Zeba <zeba.hrvoje@gmail.com>
[axboe: made a few stylistic changes]
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index b4aa6b3..9bdb074 100644 --- a/test/Makefile +++ b/test/Makefile @@ -11,7 +11,7 @@ all_targets += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register socket-rw accept timeout-overflow defer read-write io-cancel \ link-timeout cq-overflow link_drain fc2a85cb02ef-test \ poll-link accept-link fixed-link poll-cancel-ton teardowns \ - poll-many + poll-many b5837bd5311d-test include ../Makefile.quiet @@ -29,7 +29,8 @@ test_srcs := poll.c poll-cancel.c ring-leak.c fsync.c io_uring_setup.c \ a0908ae19763-test.c 232c93d07b74-test.c socket-rw.c accept.c \ timeout-overflow.c defer.c read-write.c io-cancel.c link-timeout.c \ cq-overflow.c link_drain.c fc2a85cb02ef-test.c poll-link.c \ - accept-link.c fixed-link.c poll-cancel-ton.c teardowns.c poll-many.c + accept-link.c fixed-link.c poll-cancel-ton.c teardowns.c poll-many.c \ + b5837bd5311d-test.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) |