From 0a6b664843bea0d6d77c5e0013e2f5686181d84d Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 12 Jun 2019 08:51:13 +0200 Subject: [PATCH] Makefile: run go test in test target, not all target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b76c74e..f543f6d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ all: go generate ./... go vet ./... go build - go test ./... $(MAKE) --no-print-directory -C nss all clean: @@ -11,6 +10,7 @@ clean: test: go build # we need ./nsscash + go test ./... $(MAKE) --no-print-directory -C nss test .PHONY: all clean test -- 2.43.2