diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-11-08 08:40:49 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-11-08 08:40:49 -0700 |
commit | d21b1116d9842545817a6f2edc4278c6f34b673b (patch) | |
tree | 12a13061fe3a7975aebef4d14f6a14ff04b1288d /test/Makefile | |
parent | 1a71f9ed95abb22eef7b3162c6e441274d2918f2 (diff) | |
parent | 570d79ab6485cb94aad931553d95bab7f8d19d11 (diff) | |
download | liburing-d21b1116d9842545817a6f2edc4278c6f34b673b.tar.gz liburing-d21b1116d9842545817a6f2edc4278c6f34b673b.tar.bz2 |
Merge branch 'cqring-nodrop'
* cqring-nodrop:
Add test case for IORING_SETUP_CQ_NODROP
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 345e663..a3a2556 100644 --- a/test/Makefile +++ b/test/Makefile @@ -9,7 +9,7 @@ all_targets += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register sq-space_left stdout cq-ready cq-peek-batch file-register \ cq-size 8a9973408177-test a0908ae19763-test 232c93d07b74-test \ socket-rw accept timeout-overflow defer read-write io-cancel \ - link-timeout + link-timeout cq-overflow include ../Makefile.quiet @@ -25,7 +25,8 @@ test_srcs := poll.c poll-cancel.c ring-leak.c fsync.c io_uring_setup.c \ 500f9fbadef8-test.c timeout.c sq-space_left.c stdout.c cq-ready.c\ cq-peek-batch.c file-register.c cq-size.c 8a9973408177-test.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 + timeout-overflow.c defer.c read-write.c io-cancel.c link-timeout.c \ + cq-overflow.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) |