From 1e0688daa8b4aa4ee5c38c04359d0c04c3be0d63 Mon Sep 17 00:00:00 2001 From: Leo Chen Date: Fri, 20 Sep 2019 21:59:37 +0000 Subject: [PATCH] [makefile] add make test support Signed-off-by: Leo Chen --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 00373ca23..e91973868 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ export LIBRARY_PATH:=$(LD_LIBRARY_PATH) export DYLD_FALLBACK_LIBRARY_PATH:=$(LD_LIBRARY_PATH) export GO111MODULE:=on -.PHONY: all libs exe +.PHONY: all libs exe test all: libs ./scripts/go_executable_build.sh @@ -17,3 +17,6 @@ libs: exe: ./scripts/go_executable_build.sh + +test: + ./test/debug.sh