Skip to content

Commit 0677584

Browse files
author
mike dupont
committed
test report
1 parent 89d6ce4 commit 0677584

6 files changed

+25
-4
lines changed

.dockerignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
.dockerignore
22
.git
3-
Dockerfile
3+
Dockerfile
4+
_clinic
5+
data
6+
perf-reporting/output

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
add filter=lfs diff=lfs merge=lfs -text
2+
_clinic/perf/v3/report2.txt filter=lfs diff=lfs merge=lfs -text

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,8 @@ flycheck_*.el
6969
/perf-reporting/output/tmp/
7070
/perf-reporting/output/untar/
7171
/perf-reporting/output/unzip/
72+
isolate-*.log
73+
ltrace.txt
74+
perf.data
75+
perf.data.old
76+
report.txt

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
test:
2-
docker compose build
3-
docker compose up
2+
docker compose build mina-local-network
3+
docker compose up mina-local-network

README-dev.md

+6
Original file line numberDiff line numberDiff line change
@@ -411,3 +411,9 @@ mina-local-network-1 |
411411
mina-local-network-1 | $ tar xvf src/lib/provable/test/primitives.test.ts.perf.data.tar.bz2 -C ~/.debug
412412
413413
```
414+
415+
416+
# next step
417+
418+
`perf record -g -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js src/lib/mina/token.test.ts`
419+
`perf report --stdio > report2.txt`

run-all-tests.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,13 @@ TESTS="src/lib/provable/test/merkle-list.test.ts src/lib/provable/test/merkle-tr
3535
for testname in $TESTS;
3636

3737
do
38-
perf record -o ${testname}.perf.data -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js ${testname} > ${testname}.reportout.txt 2>&1
38+
perfdata=${testname}.perf.data
39+
perf record -g -o ${testname}.perf.data -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js ${testname} > ${testname}.reportout.txt 2>&1
3940
perf archive ${testname}.perf.data
41+
perf report -i "${perfdata}" --verbose --stdio --header > "${perfdata}.header.txt" 2>&1
42+
perf report -i "${perfdata}" --verbose --stdio --stats > "${perfdata}.stats.txt" 2>&1
43+
perf script -F +pid -i "${perfdata}" > "${perfdata}.script.txt" 2>&1
44+
perf report --stdio -i "${perfdata}" > "${perfdata}.report.txt" 2>&1
4045

4146
cp ${testname}.* /tmp/perf/
4247
done

0 commit comments

Comments
 (0)