diff options
author | Jackie Liu <liuyun01@kylinos.cn> | 2019-07-09 14:35:03 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-07-09 14:35:03 -0600 |
commit | 78cafaa71d747b0e128bcefe933adb4d661702dc (patch) | |
tree | 1d020732fd98548bf7c8ee740b3b0623bfeb78b2 /test/Makefile | |
parent | ead15fa40e1d7556d986104c2112db0791b66d77 (diff) |
Add regression test cases for kthread stuck
Signed-off-by: Jackie Liu <liuyun01@kylinos.cn>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 52b4c9e..98f863c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,14 +4,14 @@ override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ all_targets += poll poll-cancel ring-leak fsync io_uring_setup io_uring_register \ io_uring_enter nop sq-full cq-full 35fa71a030ca-test \ 917257daa0fe-test b19062a56726-test eeed8b54e0df-test link \ - send_recvmsg + send_recvmsg a4c0b3decb33-test all: $(all_targets) 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 \ 35fa71a030ca-test.c 917257daa0fe-test.c b19062a56726-test.c \ - eeed8b54e0df-test.c link.c send_recvmsg.c + eeed8b54e0df-test.c link.c send_recvmsg.c a4c0b3decb33-test.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) @@ -47,6 +47,8 @@ link: link.c $(CC) $(CFLAGS) -o $@ link.c -luring send_recvmsg: send_recvmsg.c $(CC) $(CFLAGS) -o $@ send_recvmsg.c -luring +a4c0b3decb33-test: a4c0b3decb33-test.c + $(CC) $(CFLAGS) -o $@ a4c0b3decb33-test.c -luring clean: rm -f $(all_targets) $(test_objs) |