git-module

fork of https://git.lin.moe/gogs/git-module

git clone git://git.lin.moe/fork/git-module.git

 1.PHONY: vet test bench coverage
 2
 3vet:
 4	go vet
 5	go vet -tags test_sha256
 6
 7test:
 8	go test -v -cover -race
 9	go test -tags test_sha256 -v -cover -race
10
11bench:
12	go test -v -cover -test.bench=. -test.benchmem
13
14coverage:
15	go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out
16	go test -tags test_sha256 -coverprofile=c.out && go tool cover -html=c.out && rm c.out