Separate test cases from examples
Also adds a runtests makefile target.
This commit is contained in:
4
Makefile
4
Makefile
@@ -13,6 +13,10 @@ default: all
|
|||||||
all:
|
all:
|
||||||
@$(MAKE) -C src
|
@$(MAKE) -C src
|
||||||
@$(MAKE) -C test
|
@$(MAKE) -C test
|
||||||
|
@$(MAKE) -C examples
|
||||||
|
|
||||||
|
runtests:
|
||||||
|
@$(MAKE) -C test runtests
|
||||||
|
|
||||||
config-host.mak: configure
|
config-host.mak: configure
|
||||||
@if [ ! -e "$@" ]; then \
|
@if [ ! -e "$@" ]; then \
|
||||||
|
|||||||
17
examples/Makefile
Normal file
17
examples/Makefile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/
|
||||||
|
|
||||||
|
all_targets += io_uring-test io_uring-cp
|
||||||
|
|
||||||
|
all: $(all_targets)
|
||||||
|
|
||||||
|
test_srcs := io_uring-test.c io_uring-cp.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
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(all_targets) $(test_objs)
|
||||||
@@ -1,20 +1,15 @@
|
|||||||
CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/
|
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 += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register \
|
||||||
io_uring_setup io_uring_register io_uring_enter nop sq-full cq-full
|
io_uring_enter nop sq-full cq-full
|
||||||
|
|
||||||
all: $(all_targets)
|
all: $(all_targets)
|
||||||
|
|
||||||
test_srcs := io_uring-test.c io_uring-cp.c poll.c poll-cancel.c ring-leak.c \
|
test_srcs := poll.c poll-cancel.c ring-leak.c fsync.c io_uring_setup.c \
|
||||||
fsync.c io_uring_setup.c io_uring_register.c io_uring_enter.c nop.c \
|
io_uring_register.c io_uring_enter.c nop.c sq-full.c cq-full.c
|
||||||
sq-full.c cq-full.c
|
|
||||||
|
|
||||||
test_objs := $(patsubst %.c,%.ol,$(test_srcs))
|
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
|
poll: poll.c
|
||||||
$(CC) $(CFLAGS) -o $@ poll.c -luring
|
$(CC) $(CFLAGS) -o $@ poll.c -luring
|
||||||
poll-cancel: poll-cancel.c
|
poll-cancel: poll-cancel.c
|
||||||
@@ -38,3 +33,6 @@ cq-full: cq-full.c
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(all_targets) $(test_objs)
|
rm -f $(all_targets) $(test_objs)
|
||||||
|
|
||||||
|
runtests:
|
||||||
|
@./runtests.sh $(all_targets)
|
||||||
|
|||||||
Reference in New Issue
Block a user