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