1
0
Fork 0
linux/tools/perf/tests/shell/test_stat_intel_tpebs.sh
Daniel Baumann 79d69e5050
Adding upstream version 6.12.33.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 12:14:28 +02:00

19 lines
676 B
Bash
Executable file

#!/bin/bash
# test Intel TPEBS counting mode
# SPDX-License-Identifier: GPL-2.0
set -e
grep -q GenuineIntel /proc/cpuinfo || { echo Skipping non-Intel; exit 2; }
# Use this event for testing because it should exist in all platforms
event=cache-misses:R
# Without this cmd option, default value or zero is returned
echo "Testing without --record-tpebs"
result=$(perf stat -e "$event" true 2>&1)
[[ "$result" =~ $event ]] || exit 1
# In platforms that do not support TPEBS, it should execute without error.
echo "Testing with --record-tpebs"
result=$(perf stat -e "$event" --record-tpebs -a sleep 0.01 2>&1)
[[ "$result" =~ "perf record" && "$result" =~ $event ]] || exit 1