mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

There are 43 instances of posix shell tests and 35 instances of bash. To give us a single consistent language for testing in, replace all #!/bin/sh to #!/bin/bash. Common sources that are included in both different shells will now work as expected. And we no longer have to fix up bashisms that appear to work when someone's system has sh symlinked to bash, but don't work on other systems that have both shells installed. Although we could have chosen sh, it's not backwards compatible so it wouldn't be possible to bulk convert without re-writing the existing bash tests. Choosing bash also gives us some nicer features including 'local' variable definitions and regexes in if statements that are already widely used in the tests. It's not expected that there are any users with only sh available due to the large number of bash tests that exist. Discussed in relation to running shellcheck here: https://lore.kernel.org/linux-perf-users/e3751a74be34bbf3781c4644f518702a7270220b.1749785642.git.collin.funk1@gmail.com/ Signed-off-by: James Clark <james.clark@linaro.org> Reviewed-by: Collin Funk <collin.funk1@gmail.com> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Link: https://lore.kernel.org/r/20250623-james-perf-bash-tests-v1-1-f572f54d4559@linaro.org Signed-off-by: Namhyung Kim <namhyung@kernel.org>
99 lines
2.1 KiB
Bash
Executable file
99 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
# perf stat metrics (shadow stat) test
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
set -e
|
|
|
|
THRESHOLD=0.015
|
|
|
|
# skip if system-wide mode is forbidden
|
|
perf stat -a true > /dev/null 2>&1 || exit 2
|
|
|
|
# skip if on hybrid platform
|
|
perf stat -a -e cycles sleep 1 2>&1 | grep -e cpu_core && exit 2
|
|
|
|
test_global_aggr()
|
|
{
|
|
perf stat -a --no-big-num -e cycles,instructions sleep 1 2>&1 | \
|
|
grep -e cycles -e instructions | \
|
|
while read num evt _ ipc rest
|
|
do
|
|
# skip not counted events
|
|
if [ "$num" = "<not" ]; then
|
|
continue
|
|
fi
|
|
|
|
# save cycles count
|
|
if [ "$evt" = "cycles" ]; then
|
|
cyc=$num
|
|
continue
|
|
fi
|
|
|
|
# skip if no cycles
|
|
if [ -z "$cyc" ]; then
|
|
continue
|
|
fi
|
|
|
|
# use printf for rounding and a leading zero
|
|
res=`echo $num $cyc | awk '{printf "%.2f", $1 / $2}'`
|
|
if [ "$ipc" != "$res" ]; then
|
|
# check the difference from the real result for FP imperfections
|
|
diff=`echo $ipc $res $THRESHOLD | \
|
|
awk '{x = ($1 - $2) < 0 ? ($2 - $1) : ($1 - $2); print (x > $3)}'`
|
|
|
|
if [ $diff -eq 1 ]; then
|
|
echo "IPC is different: $res != $ipc ($num / $cyc)"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Warning: Difference of IPC is under the threshold"
|
|
fi
|
|
done
|
|
}
|
|
|
|
test_no_aggr()
|
|
{
|
|
perf stat -a -A --no-big-num -e cycles,instructions sleep 1 2>&1 | \
|
|
grep ^CPU | \
|
|
while read cpu num evt _ ipc rest
|
|
do
|
|
# skip not counted events
|
|
if [ "$num" = "<not" ]; then
|
|
continue
|
|
fi
|
|
|
|
# save cycles count
|
|
if [ "$evt" = "cycles" ]; then
|
|
results="$results $cpu:$num"
|
|
continue
|
|
fi
|
|
|
|
cyc=${results##* $cpu:}
|
|
cyc=${cyc%% *}
|
|
|
|
# skip if no cycles
|
|
if [ -z "$cyc" ]; then
|
|
continue
|
|
fi
|
|
|
|
# use printf for rounding and a leading zero
|
|
res=`echo $num $cyc | awk '{printf "%.2f", $1 / $2}'`
|
|
if [ "$ipc" != "$res" ]; then
|
|
# check difference from the real result for FP imperfections
|
|
diff=`echo $ipc $res $THRESHOLD | \
|
|
awk '{x = ($1 - $2) < 0 ? ($2 - $1) : ($1 - $2); print (x > $3)}'`
|
|
|
|
if [ $diff -eq 1 ]; then
|
|
echo "IPC is different: $res != $ipc ($num / $cyc)"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Warning: Difference of IPC is under the threshold"
|
|
fi
|
|
done
|
|
}
|
|
|
|
test_global_aggr
|
|
test_no_aggr
|
|
|
|
exit 0
|