From 72b4d0b622a6b05b5b576ef6cbb746ec47b28bf8 Mon Sep 17 00:00:00 2001 From: Hui Zhu Date: Thu, 7 Dec 2017 10:27:39 +0800 Subject: [PATCH] Makefile: let "test" doesn't depend on "all" Test doesn't depend on binary. Signed-off-by: Hui Zhu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1728c5dee363..faa1c5f429fd 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: $(TARGET) $(TARGET): go build -o $@ proxy.go -test: all +test: go test -v -race -coverprofile=coverage.txt -covermode=atomic clean: