blob: 24dd61f91241d45f85a323b84f0301d8fe99979d (
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=10 -bench=. ./... -v
profile:
go test -bench=QuickSort ./sort -memprofile memprofile.out -cpuprofile profile.out
go tool pprof profile.out
|