diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-12-11 14:45:32 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-12-11 14:45:32 -0700 |
commit | c1307a6087127730cb8dceda3ad960da6052117b (patch) | |
tree | a350f9efbb4bfab75d5d926ac2783393513abff0 /test/Makefile | |
parent | 1781f0efe03fd29afe807826b04a8473d8557976 (diff) | |
download | liburing-c1307a6087127730cb8dceda3ad960da6052117b.tar.gz liburing-c1307a6087127730cb8dceda3ad960da6052117b.tar.bz2 |
Add IORING_OP_OPENAT/IORING_OP_CLOSE helpers and test case
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index ac19c4b..f93761e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -17,7 +17,7 @@ all_targets += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register link-timeout cq-overflow link_drain fc2a85cb02ef-test \ poll-link accept-link fixed-link poll-cancel-ton teardowns \ poll-many b5837bd5311d-test accept-test d77a67ed5f27-test \ - connect 7ad0e4b2f83c-test submit-reuse fallocate + connect 7ad0e4b2f83c-test submit-reuse fallocate open-close include ../Makefile.quiet @@ -37,7 +37,7 @@ test_srcs := poll.c poll-cancel.c ring-leak.c fsync.c io_uring_setup.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 \ b5837bd5311d-test.c accept-test.c d77a67ed5f27-test.c connect.c \ - 7ad0e4b2f83c-test.c submit-reuse.c fallocate.c + 7ad0e4b2f83c-test.c submit-reuse.c fallocate.c open-close.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) |