diff options
-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/ |