File: Makefile

package info (click to toggle)
golang-github-hashicorp-go-rootcerts 0.0~git20160503.0.6bb64b3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 112 kB
  • ctags: 26
  • sloc: makefile: 9
file content (8 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
TEST?=./...

test:
	go test $(TEST) $(TESTARGS) -timeout=3s -parallel=4
	go vet $(TEST)
	go test $(TEST) -race

.PHONY: test