Added -test.v for test execution 70/4970/1
authorJuha Hyttinen <juha.hyttinen@nokia.com>
Tue, 3 Nov 2020 07:05:41 +0000 (09:05 +0200)
committerJuha Hyttinen <juha.hyttinen@nokia.com>
Tue, 3 Nov 2020 07:05:54 +0000 (09:05 +0200)
Change-Id: Icdd82af447daea3113dcb02683d98e5fcf17d294
Signed-off-by: Juha Hyttinen <juha.hyttinen@nokia.com>
build/make.go.mk

index ac5a219..fb20da3 100755 (executable)
@@ -65,7 +65,7 @@ $(GO_CACHE_DIR)/%: $(GOFILES) $(GOMODFILES) $$(BUILDDEPS)
 $(GO_CACHE_DIR)/%_test: $(GOALLFILES) $(GOMODFILES) $$(BUILDDEPS) FORCE
        @echo "Testing:\t$*"
        @eval GO111MODULE=on GOSUMDB=off GO_ENABLED=0 GOOS=linux $(BUILDARGS) $(GOTEST) -coverprofile $(COVEROUT) -c -o $@ ./$*
-       @if test -e $@ ; then eval $(TESTENV) $@ -test.coverprofile $(COVEROUT); else true ; fi
+       @if test -e $@ ; then eval $(TESTENV) $@ -test.v -test.coverprofile $(COVEROUT); else true ; fi
        @if test -e $@ ; then go tool cover -html=$(COVEROUT) -o $(COVERHTML); else true ; fi