We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7e064 commit 4dd50d6Copy full SHA for 4dd50d6
GNUmakefile
@@ -35,5 +35,13 @@ errcheck:
35
vendor-status:
36
@govendor status
37
38
-.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status
+test-compile:
39
+ @if [ "$(TEST)" = "./..." ]; then \
40
+ echo "ERROR: Set TEST to a specific package. For example,"; \
41
+ echo " make test-compile TEST=./aws"; \
42
+ exit 1; \
43
+ fi
44
+ go test -c $(TEST) $(TESTARGS)
45
+
46
+.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile
47
0 commit comments