From 3b1eebd502c7b9e82ff0d60ab96546ec6b98d079 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Thu, 7 Sep 2017 12:32:58 -0700 Subject: [PATCH] Gets rid of spurious $(GOTEST_FLAGS) in the log file name. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index a419e6c730..0ad26d6439 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -59,7 +59,7 @@ cov: test: dev-build vet go test -tags '$(GOTAGS)' -i ./... go test $(GOTEST_FLAGS) -tags '$(GOTAGS)' -timeout 7m -v ./... 2>&1 >test.log ; echo $$? > exit-code - @echo "Exit code: `cat exit-code`" >> test$(GOTEST_FLAGS).log + @echo "Exit code: `cat exit-code`" >> test.log @echo "----" @grep -A5 'DATA RACE' test.log || true @grep -A10 'panic: test timed out' test.log || true