Home
last modified time | relevance | path

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

/tools/perf/tests/shell/
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
65 perf stat -j -A -a --no-merge -o "${stat_output}" true
73 perf stat -j -I 1000 -o "${stat_output}" true
82 perf stat -j -e cpu-clock -o "${stat_output}" true
95 perf stat -j --per-core -a -o "${stat_output}" true
145 perf stat -j --per-die -a -o "${stat_output}" true
[all …]
A Dtest_stat_intel_tpebs.sh23 stat_output=$(mktemp /tmp/__perf_stat_tpebs_output.XXXXX)
26 rm -rf "${stat_output}"
32 cat "${stat_output}"
41 if ! perf record -e "${event}:p" -a -o /dev/null sleep 0.01 > "${stat_output}" 2>&1
50 if ! perf stat -e "${event}:R" --record-tpebs -a sleep 0.01 > "${stat_output}" 2>&1
53 cat "${stat_output}"
68 if ! grep "perf record" "${stat_output}"
71 cat "${stat_output}"
74 if ! grep "${event}:R" "${stat_output}" && ! grep "/${event}/R" "${stat_output}"
77 cat "${stat_output}"
A Dstat+event_uniquifying.sh7 stat_output=$(mktemp /tmp/__perf_test.stat_output.XXXXX)
60 perf_command="${perf_tool} stat -e $event -A -o ${stat_output} -- true"
65 if ! cat "${stat_output}" | grep -q "${uniquified_event}"; then
68 cat "${stat_output}"
76 rm -f "${stat_output}"
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}"
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}"
97 perf_cmd="-o ${stat_output}"
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}')

Completed in 8 milliseconds