From 765ba233c88f6dc932c61a5b66c26db0ebd082ba Mon Sep 17 00:00:00 2001 From: Jeff Moyer Date: Mon, 4 Mar 2019 17:35:49 -0500 Subject: 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 Signed-off-by: Jens Axboe --- test/Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'test/Makefile') 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) -- cgit