Home
last modified time | relevance | path

Searched refs:stat_output (Results 1 – 5 of 5) sorted by relevance

/linux/tools/perf/tests/shell/
H A Dstat+json_output.sh16 stat_output=$(mktemp /tmp/__perf_test.stat_output.json.XXXXX)
19 rm -f "${stat_output}"
39 perf stat -j -o "${stat_output}" true
40 $PYTHON $pythonchecker --no-args --file "${stat_output}"
52 perf stat -j -a -o "${stat_output}" true
53 $PYTHON $pythonchecker --system-wide --file "${stat_output}"
65 perf stat -j -A -a --no-merge -o "${stat_output}" true
66 $PYTHON $pythonchecker --system-wide-no-aggr --file "${stat_output}"
73 perf stat -j -I 1000 -o "${stat_output}" true
74 $PYTHON $pythonchecker --interval --file "${stat_output}"
[all …]
H A Dstat+event_uniquifying.sh8 stat_output=$(mktemp /tmp/__perf_test.stat_output.XXXXX)
11 rm -f "${stat_output}"
45 if ! perf stat -e "$event" -A -o ${stat_output} -- true; then
53 if ! grep -q "${pmu_v_event}" "${stat_output}"; then
55 cat "${stat_output}"
H A Dstat+std_output.sh10 . "$(dirname $0)"/lib/stat_output.sh
12 stat_output=$(mktemp /tmp/__perf_test.stat_output.std.XXXXX)
19 rm -f "${stat_output}"
91 done < "${stat_output}"
96 cat "${stat_output}"
101 perf_cmd="-o ${stat_output}"
H A Dstat+csv_output.sh10 . "$(dirname $0)"/lib/stat_output.sh
14 stat_output=$(mktemp /tmp/__perf_test.stat_output.csv.XXXXX)
17 rm -f "${stat_output}"
66 done < "${stat_output}"
70 perf_cmd="-x$csv_sep -o ${stat_output}"
H A Dstat_bpf_counters.sh54stat_output=$(perf stat --no-big-num -e instructions/name=base_instructions/,instructions/name=bpf…
55 base_instructions=$(echo "$stat_output"| awk '/base_instructions/ {print $1}')
56 bpf_instructions=$(echo "$stat_output"| awk '/bpf_instructions/ {print $1}')