16 lines
494 B
Bash
Executable File
16 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#cd $GOPATH/src/git.makaay.nl/mauricem/go-toml/cmd/burntsushi-tester/
|
|
#go build
|
|
#go install
|
|
#cd $GOPATH/src/git.makaay.nl/mauricem/go-toml/parse2
|
|
#PPFILE=`cat long.toml | $GOPATH/bin/burntsushi-tester 2>&1 | grep "profiling enabled" | cut -d, -f2`
|
|
#echo $PPFILE
|
|
|
|
#ppfile=` | ./parse2 2>&1 | grep "cpu profiling enabled" | cut -d, -f2`
|
|
|
|
go build
|
|
ppfile=`cat long.toml | time ./parse2 2>&1 | grep "profiling enabled" | cut -d, -f2`
|
|
go tool pprof -http 0.0.0.0:8888 ./parse2 $ppfile
|
|
|