diff options
author | Ammar Faizi <ammarfaizi2@gnuweeb.org> | 2022-04-04 01:21:59 +0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-03 17:12:50 -0600 |
commit | 664bf782a6d78f701301ef6ebdd7cf63b2e3ee09 (patch) | |
tree | ddef6119cec1e4b11003335766c78f175dd9a26f | |
parent | 20b5edad904af8873ed06f683dee6dbfb05d9fcb (diff) | |
download | liburing-664bf782a6d78f701301ef6ebdd7cf63b2e3ee09.tar.gz liburing-664bf782a6d78f701301ef6ebdd7cf63b2e3ee09.tar.bz2 |
test/Makefile: Append `-lpthread` to `LDFLAGS` for all tests
Instead of overriding LDFLAGS one by one for tests that need pthread,
append -lpthread to LDFLAGS for all tests. This makes the Makefile
script simpler. It also saves some hassle when we add a new test
that does use pthread.
Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
Link: https://lore.kernel.org/r/20220403182200.259937-3-ammarfaizi2@gnuweeb.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | test/Makefile | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/test/Makefile b/test/Makefile index 44a96b2..eb1e7d5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -31,7 +31,7 @@ override CFLAGS += $(XCFLAGS) -DLIBURING_BUILD_TEST override CXXFLAGS += $(XCFLAGS) -std=c++11 -DLIBURING_BUILD_TEST LDFLAGS ?= -override LDFLAGS += -L../src/ -luring +override LDFLAGS += -L../src/ -luring -lpthread test_srcs := \ 232c93d07b74.c \ @@ -211,28 +211,6 @@ helpers.o: helpers.c $(QUIET_CXX)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $< $(helpers) $(LDFLAGS) -35fa71a030ca: override LDFLAGS += -lpthread -232c93d07b74: override LDFLAGS += -lpthread -send_recv: override LDFLAGS += -lpthread -send_recvmsg: override LDFLAGS += -lpthread -poll-link: override LDFLAGS += -lpthread -accept-link: override LDFLAGS += -lpthread -submit-reuse: override LDFLAGS += -lpthread -poll-v-poll: override LDFLAGS += -lpthread -across-fork: override LDFLAGS += -lpthread -ce593a6c480a: override LDFLAGS += -lpthread -wakeup-hang: override LDFLAGS += -lpthread -pipe-eof: override LDFLAGS += -lpthread -timeout-new: override LDFLAGS += -lpthread -thread-exit: override LDFLAGS += -lpthread -ring-leak2: override LDFLAGS += -lpthread -poll-mshot-update: override LDFLAGS += -lpthread -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/ $(INSTALL) -D -m 755 $(test_targets) $(datadir)/liburing-test/ |