18 lines
600 B
Bash
Executable File
18 lines
600 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`
|
|
|
|
cd ../cmd/burntsushi-tester
|
|
go build
|
|
cd ../../parse2
|
|
ppfile=`cat x | ../cmd/burntsushi-tester/burntsushi-tester -p 100 2>&1 | grep "profiling enabled" | cut -d, -f2`
|
|
go tool pprof -http 0.0.0.0:8888 ../cmd/burntsushi-tester/burntsushi-tester $ppfile
|
|
|