diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-03-23 16:45:58 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-03-23 16:45:58 -0600 |
commit | a264c2db27df2da90201d8e61f927ddf9320fa0e (patch) | |
tree | cec8a15eaddd47f16abf2e094fbc11cf8a368d69 | |
parent | 03d6cdab9ff670e8703f54dd198c99cf399e41b5 (diff) | |
download | liburing-a264c2db27df2da90201d8e61f927ddf9320fa0e.tar.gz liburing-a264c2db27df2da90201d8e61f927ddf9320fa0e.tar.bz2 |
Actually wire up recv-msgall-stream test case
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | test/Makefile | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -97,6 +97,7 @@ /test/probe /test/read-write /test/recv-msgall +/test/recv-msgall-stream /test/register-restrictions /test/rename /test/ring-leak diff --git a/test/Makefile b/test/Makefile index 0a659c5..f1accbf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -116,6 +116,7 @@ test_srcs := \ probe.c \ read-write.c \ recv-msgall.c \ + recv-msgall-stream.c \ register-restrictions.c \ rename.c \ ring-leak2.c \ @@ -228,6 +229,7 @@ exit-no-cleanup: override LDFLAGS += -lpthread pollfree: override LDFLAGS += -lpthread msg-ring: override LDFLAGS += -lpthread recv-msgall: override LDFLAGS += -lpthread +recv-msgall-stream: override LDFLAGS += -lpthread install: $(test_targets) runtests.sh runtests-loop.sh $(INSTALL) -D -d -m 755 $(datadir)/liburing-test/ |