mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
perf test: Set PERF_EXEC_PATH for script execution
The task-analyzer.py script (actually every other scripts too) requires
PERF_EXEC_PATH env to find dependent libraries and scripts. For scripts
test to run correctly, it needs to set PERF_EXEC_PATH to the perf tool
source directory.
Instead of blindly update the env, let's check the directory structure
to make sure it points to the correct location.
Fixes: e8478b84d6 ("perf test: add new task-analyzer tests")
Cc: Petar Gligoric <[email protected]>
Cc: Hagen Paul Pfeifer <[email protected]>
Cc: Aditya Gupta <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Ingo Molnar <[email protected]>
Acked-by: Ian Rogers <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
This commit is contained in:
@@ -5,6 +5,12 @@
|
||||
tmpdir=$(mktemp -d /tmp/perf-script-task-analyzer-XXXXX)
|
||||
err=0
|
||||
|
||||
# set PERF_EXEC_PATH to find scripts in the source directory
|
||||
perfdir=$(dirname "$0")/../..
|
||||
if [ -e "$perfdir/scripts/python/Perf-Trace-Util" ]; then
|
||||
export PERF_EXEC_PATH=$perfdir
|
||||
fi
|
||||
|
||||
cleanup() {
|
||||
rm -f perf.data
|
||||
rm -f perf.data.old
|
||||
|
||||
Reference in New Issue
Block a user