Lines Matching full:stat
2 # perf stat tests
9 echo "Basic stat command test"
10 if ! perf stat true 2>&1 | egrep -q "Performance counter stats for 'true':"
12 echo "Basic stat command test [Failed]"
16 echo "Basic stat command test [Success]"
20 echo "stat record and report test"
21 if ! perf stat record -o - true | perf stat report -i - 2>&1 | \
24 echo "stat record and report test [Failed]"
28 echo "stat record and report test [Success]"
32 echo "stat repeat weak groups test"
33 if ! perf stat -e '{cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles}' \
36 echo "stat repeat weak groups test [Skipped event parsing failed]"
39 …if ! perf stat -r2 -e '{cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles}:W' \
42 echo "stat repeat weak groups test [Failed]"
46 echo "stat repeat weak groups test [Success]"
53 if ! perf stat -e '{slots,topdown-retiring}' true > /dev/null 2>&1
58 if perf stat -e '{slots,topdown-retiring}' true 2>&1 | egrep -q "<not supported>"
64 if perf stat -e '{topdown-retiring,slots}' true 2>&1 | egrep -q "<not supported>"
79 if ! perf stat --no-merge -e "$ok_grouping" true > /dev/null 2>&1
85 if perf stat --no-merge -e "$group_needs_break" true 2>&1 | egrep -q "<not supported>"