diff options
author | Jeff Moyer <jmoyer@redhat.com> | 2019-03-04 17:35:49 -0500 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-03-04 15:37:40 -0700 |
commit | 765ba233c88f6dc932c61a5b66c26db0ebd082ba (patch) | |
tree | a503c79c355de8fbe9e6cc142936f10e29238dce /test/Makefile | |
parent | 432fa1d3d1818bbbcfac0710c28a17d62a31f719 (diff) |
add syscall unit tests
Add tests for io_uring_setup, io_uring_register and io_uring_enter.
The test coverage is nowhere near complete and the reporting is not
uniform. But, it's a start.
Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 8d8a65f..e1af59a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,10 +1,12 @@ CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/ -all_targets += io_uring-test io_uring-cp poll poll-cancel ring-leak fsync +all_targets += io_uring-test io_uring-cp poll poll-cancel ring-leak fsync \ + io_uring_setup io_uring_register io_uring_enter all: $(all_targets) -test_srcs := io_uring-test.c io_uring-cp.c poll.c poll-cancel.c ring-leak.c fsync.c +test_srcs := io_uring-test.c io_uring-cp.c poll.c poll-cancel.c ring-leak.c \ + fsync.c io_uring_setup.c io_uring_register.c io_uring_enter.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) @@ -20,5 +22,11 @@ ring-leak: ring-leak.c $(CC) $(CFLAGS) -o $@ ring-leak.c -luring fsync: fsync.c $(CC) $(CFLAGS) -o $@ fsync.c -luring +io_uring_setup: io_uring_setup.c + $(CC) $(CFLAGS) -o $@ io_uring_setup.c -luring +io_uring_register: io_uring_register.c + $(CC) $(CFLAGS) -o $@ io_uring_register.c -luring +io_uring_enter: io_uring_enter.c + $(CC) $(CFLAGS) -o $@ io_uring_enter.c -luring clean: rm -f $(all_targets) $(test_objs) |