From 2519b4e18101a7e987dad842084cd1da5da5c191 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Sat, 5 Sep 2015 13:06:51 +0200 Subject: [PATCH] Use the shlib wrapper when running nptest Since there seems to be no way to avoid linking to libssl and libcrypto, just wrap the test. This unbreaks "shared" builds when using clang and/or OS X. Signed-off-by: Rich Salz Reviewed-by: Ben Laurie --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 0ee38bf119..c85e8d80b6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -173,7 +173,7 @@ alltests: \ test_np: $(NPTEST)$(EXE_EXT) @echo $(START) $@ - ./$(NPTEST) + ../util/shlib_wrap.sh ./$(NPTEST) test_evp: $(EVPTEST)$(EXE_EXT) evptests.txt @echo $(START) $@ -- 2.40.0