Makefile is updated
This commit is contained in:
parent
9f0e766757
commit
8de55d266c
10
Makefile
10
Makefile
@ -9,7 +9,7 @@ build:
|
|||||||
go build
|
go build
|
||||||
|
|
||||||
run:
|
run:
|
||||||
./php-parser $(PHPFILE)
|
./php-parser -d go $(PHPFILE)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
go test ./...
|
go test ./...
|
||||||
@ -36,17 +36,17 @@ compile: ./php5/php5.go ./php7/php7.go ./scanner/scanner.go
|
|||||||
goyacc -o $@ $<
|
goyacc -o $@ $<
|
||||||
|
|
||||||
cpu_pprof:
|
cpu_pprof:
|
||||||
GOGC=off go test -cpuprofile cpu.pprof -bench=. -benchtime=20s ./php7
|
go test -cpuprofile cpu.pprof -bench=. -benchtime=20s ./php7
|
||||||
go tool pprof ./php7.test cpu.pprof
|
go tool pprof ./php7.test cpu.pprof
|
||||||
|
|
||||||
mem_pprof:
|
mem_pprof:
|
||||||
GOGC=off go test -memprofile mem.pprof -bench=. -benchtime=20s -benchmem ./php7
|
go test -memprofile mem.pprof -bench=. -benchtime=20s -benchmem ./php7
|
||||||
go tool pprof -alloc_objects ./php7.test mem.pprof
|
go tool pprof -alloc_objects ./php7.test mem.pprof
|
||||||
|
|
||||||
cpu_pprof_php5:
|
cpu_pprof_php5:
|
||||||
GOGC=off go test -cpuprofile cpu.prof -bench=. -benchtime=20s ./php5
|
go test -cpuprofile cpu.prof -bench=. -benchtime=20s ./php5
|
||||||
go tool pprof ./php5.test cpu.prof
|
go tool pprof ./php5.test cpu.prof
|
||||||
|
|
||||||
mem_pprof_php5:
|
mem_pprof_php5:
|
||||||
GOGC=off go test -memprofile mem.prof -bench=. -benchtime=20s -benchmem ./php5
|
go test -memprofile mem.prof -bench=. -benchtime=20s -benchmem ./php5
|
||||||
go tool pprof -alloc_objects ./php5.test mem.prof
|
go tool pprof -alloc_objects ./php5.test mem.prof
|
||||||
|
Loading…
Reference in New Issue
Block a user