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

perf trace requires root because it needs to use [ku]probes. Skip those test when it's not run as root. Before: $ perf test probe 47: Probe SDT events : Ok 104: test perf probe of function from different CU : FAILED! 115: perftool-testsuite_probe : FAILED! 117: Add vfs_getname probe to get syscall args filenames : FAILED! 118: probe libc's inet_pton & backtrace it with ping : FAILED! 119: Use vfs_getname probe to get syscall args filenames : FAILED! After: $ perf test probe 47: Probe SDT events : Ok 104: test perf probe of function from different CU : Skip 115: perftool-testsuite_probe : Skip 117: Add vfs_getname probe to get syscall args filenames : Skip 118: probe libc's inet_pton & backtrace it with ping : Skip 119: Use vfs_getname probe to get syscall args filenames : Skip Tested-by: Thomas Falcon <thomas.falcon@intel.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Link: https://lore.kernel.org/r/20250304022837.1877845-3-namhyung@kernel.org Signed-off-by: Namhyung Kim <namhyung@kernel.org>
24 lines
604 B
Bash
Executable file
24 lines
604 B
Bash
Executable file
#!/bin/bash
|
|
# perftool-testsuite_probe (exclusive)
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
[ "$(id -u)" = 0 ] || exit 2
|
|
test -d "$(dirname "$0")/base_probe" || exit 2
|
|
cd "$(dirname "$0")/base_probe" || exit 2
|
|
status=0
|
|
|
|
PERFSUITE_RUN_DIR=$(mktemp -d /tmp/"$(basename "$0" .sh)".XXX)
|
|
export PERFSUITE_RUN_DIR
|
|
|
|
for testcase in setup.sh test_*; do # skip setup.sh if not present or not executable
|
|
test -x "$testcase" || continue
|
|
./"$testcase"
|
|
(( status += $? ))
|
|
done
|
|
|
|
if ! [ "$PERFTEST_KEEP_LOGS" = "y" ]; then
|
|
rm -rf "$PERFSUITE_RUN_DIR"
|
|
fi
|
|
|
|
test $status -ne 0 && exit 1
|
|
exit 0
|