blob: cf5cf2c661c75a3c62316371f1b62450a7a58507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all:
go build
run:
go run main.go
test:
go test ./... -v
bench:
go test -run=xxx -bench=. ./... -v
profile:
go test -run=xxx -bench=Quick2Sort ./sort -memprofile memprofile.out -cpuprofile cpuprofile.out
go tool pprof cpuprofile.out
|