Lines Matching +full:1 +full:e

5 set -e
10 if ! perf stat true 2>&1 | grep -E -q "Performance counter stats for 'true':"
13 err=1
21 if ! perf stat record -o - true | perf stat report -i - 2>&1 | \
22 grep -E -q "Performance counter stats for 'pipe':"
25 err=1
33 if ! perf stat record -o - true | perf script -i - 2>&1 | \
34 …grep -E -q "CPU[[:space:]]+THREAD[[:space:]]+VAL[[:space:]]+ENA[[:space:]]+RUN[[:space:]]+TIME[[:s…
37 err=1
45 if ! perf stat -e '{cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles}' \
46 true 2>&1 | grep -q 'seconds time elapsed'
51 …if ! perf stat -r2 -e '{cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles,cycles}:W' \
52 true > /dev/null 2>&1
55 err=1
65 if ! perf stat -e '{slots,topdown-retiring}' true > /dev/null 2>&1
70 if perf stat -e '{slots,topdown-retiring}' true 2>&1 | grep -E -q "<not supported>"
73 err=1
76 if perf stat -e 'instructions,topdown-retiring,slots' true 2>&1 | grep -E -q "<not supported>"
79 err=1
82 if perf stat -e '{instructions,topdown-retiring,slots}' true 2>&1 | grep -E -q "<not supported>"
85 err=1
88 if perf stat -e '{instructions,slots},topdown-retiring' true 2>&1 | grep -E -q "<not supported>"
91 err=1
94 if perf stat -e '{instructions,slots},{topdown-retiring}' true 2>&1 | grep -E -q "<not supported>"
97 err=1
100 if perf stat -e '{instructions,r400,r8000}' true 2>&1 | grep -E -q "<not supported>"
103 err=1
115 if ! perf stat --no-merge -e "$ok_grouping" true > /dev/null 2>&1
121 if perf stat --no-merge -e "$group_needs_break" true 2>&1 | grep -E -q "<not supported>"
124 err=1
135 if perf stat --cputype="123" -e instructions true > /dev/null 2>&1
138 err=1
153 if perf stat -e "$i_base/instructions/" true > /dev/null 2>&1
166 if ! perf stat --cputype="$pmu" -e instructions true 2>&1 | grep -E -q "instructions"
169 err=1
180 # Count the number of core PMUs, assume minimum of 1
182 if [ "$pmus" -lt 1 ]
184 pmus=1
188 cycles_events=$(perf stat -- true 2>&1 | grep -E "/cycles/[uH]*| cycles[:uH]* " -c)
197 err=1