summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2019-04-17 17:38:14 +0000
committerJens Axboe <axboe@kernel.dk>2019-04-17 11:39:39 -0600
commit4916320ec374cc5d2b4062c48d2e4c576472b739 (patch)
tree5f6fd8bdc735da53000e3a03bedf9b564e148f0f /test/Makefile
parent76b61ebf1bd17d3a31c3bf2d8236b9bd50d0f9a8 (diff)
Separate test cases from examples
Also adds a runtests makefile target.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile16
1 files changed, 7 insertions, 9 deletions
diff --git a/test/Makefile b/test/Makefile
index 63bf67a..08b0c42 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,20 +1,15 @@
CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/
-all_targets += io_uring-test io_uring-cp poll poll-cancel ring-leak fsync \
- io_uring_setup io_uring_register io_uring_enter nop sq-full cq-full
+all_targets += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register \
+ io_uring_enter nop sq-full cq-full
all: $(all_targets)
-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 nop.c \
- sq-full.c cq-full.c
+test_srcs := poll.c poll-cancel.c ring-leak.c fsync.c io_uring_setup.c \
+ io_uring_register.c io_uring_enter.c nop.c sq-full.c cq-full.c
test_objs := $(patsubst %.c,%.ol,$(test_srcs))
-io_uring-test: io_uring-test.c
- $(CC) $(CFLAGS) -o $@ io_uring-test.c -luring
-io_uring-cp: io_uring-cp.c
- $(CC) $(CFLAGS) -o $@ io_uring-cp.c -luring
poll: poll.c
$(CC) $(CFLAGS) -o $@ poll.c -luring
poll-cancel: poll-cancel.c
@@ -38,3 +33,6 @@ cq-full: cq-full.c
clean:
rm -f $(all_targets) $(test_objs)
+
+runtests:
+ @./runtests.sh $(all_targets)