Skip to content

Commit 0d022f7

Browse files
committed
Makefile: add rule to print validation-tests
Signed-off-by: Giuseppe Scrivano <[email protected]>
1 parent 6212483 commit 0d022f7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ validation-executables: $(VALIDATION_TESTS)
5858
$(VALIDATION_TESTS): %.t: %.go
5959
go build -tags "$(BUILDTAGS)" ${TESTFLAGS} -o $@ $<
6060

61-
.PHONY: test .gofmt .govet .golint
61+
print-validation-tests:
62+
@echo $(VALIDATION_TESTS)
63+
64+
.PHONY: test .gofmt .govet .golint print-validation-tests
6265

6366
PACKAGES = $(shell go list ./... | grep -v vendor)
6467
test: .gofmt .govet .golint .gotest

0 commit comments

Comments
 (0)