Skip to content

Commit

Permalink
show build tags in a few tests
Browse files Browse the repository at this point in the history
  • Loading branch information
torao committed Sep 2, 2021
1 parent dbbe465 commit a1ef7de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ test:
.PHONY: test

test_race:
@echo "--> Running go test -- race"
@go test -p 1 -v -race $(PACKAGES)
@echo "--> Running go test -- race $(BUILD_TAGS)"
@go test -p 1 -v -race $(PACKAGES) -tags "$(BUILD_TAGS)"
.PHONY: test_race

test_deadlock:
Expand All @@ -75,7 +75,7 @@ test_deadlock:
.PHONY: test_race

test_tags:
@echo "--> Running go test"
@echo "--> Running go test -- $(BUILD_TAGS)"
@go test -p 1 $(PACKAGES) -tags "$(BUILD_TAGS)"
.PHONY: test

Expand Down

0 comments on commit a1ef7de

Please sign in to comment.