mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-03-15 23:10:50 +00:00
9 lines
145 B
Bash
9 lines
145 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
valgrind \
|
||
|
--tool=callgrind \
|
||
|
--dump-instr=yes \
|
||
|
--collect-jumps=yes \
|
||
|
--simulate-cache=yes $1 -- $2
|