From 3f4476da024aa7a414d2967fcdc16f30d23a9306 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Tue, 11 Aug 2015 19:10:34 -0500 Subject: [PATCH] Add verbose flag to codesigned tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f2c6ef18..aed7c073 100644 --- a/Makefile +++ b/Makefile @@ -47,8 +47,8 @@ ifeq "$(TRAVIS)" "true" sudo -E go test -v ./... else go test $(PREFIX)/terminal $(PREFIX)/dwarf/frame $(PREFIX)/dwarf/op $(PREFIX)/dwarf/util $(PREFIX)/source $(PREFIX)/dwarf/line - go test -c $(FLAGS) $(PREFIX)/proc && codesign -s $(CERT) ./proc.test && ./proc.test $(TESTFLAGS) && rm ./proc.test - go test -c $(FLAGS) $(PREFIX)/service/test && codesign -s $(CERT) ./test.test && ./test.test $(TESTFLAGS) && rm ./test.test + go test -c $(FLAGS) $(PREFIX)/proc && codesign -s $(CERT) ./proc.test && ./proc.test $(TESTFLAGS) -test.v && rm ./proc.test + go test -c $(FLAGS) $(PREFIX)/service/test && codesign -s $(CERT) ./test.test && ./test.test $(TESTFLAGS) -test.v && rm ./test.test endif else go test -v ./... -- GitLab