diff --git a/system-test/test.sh b/system-test/test.sh index 2a16f4d8..5a86d96d 100755 --- a/system-test/test.sh +++ b/system-test/test.sh @@ -63,13 +63,17 @@ node -v node --trace-warnings "$BENCHPATH" 10 $VERIFY_TIME_LINE_NUMBERS if [[ "$VERIFY_TIME_LINE_NUMBERS" == "true" ]]; then + pprof -lines -top -nodecount=2 time.pb.gz pprof -lines -top -nodecount=2 time.pb.gz | \ - grep "busyLoop.*src/busybench.js:33" + grep "busyLoop.*src/busybench.js:3[3-5]" + pprof -filefunctions -top -nodecount=2 heap.pb.gz pprof -filefunctions -top -nodecount=2 heap.pb.gz | \ grep "busyLoop.*src/busybench.js" else + pprof -filefunctions -top -nodecount=2 time.pb.gz pprof -filefunctions -top -nodecount=2 time.pb.gz | \ grep "busyLoop.*src/busybench.ts" + pprof -filefunctions -top -nodecount=2 heap.pb.gz pprof -filefunctions -top -nodecount=2 heap.pb.gz | \ grep "busyLoop.*src/busybench.ts" fi