]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
perf test: Check output of the probe ... --funcs command
authorChaitanya S Prakash <chaitanyas.prakash@arm.com>
Sat, 1 Jun 2024 12:59:46 +0000 (18:29 +0530)
committerNamhyung Kim <namhyung@kernel.org>
Tue, 25 Jun 2024 18:06:19 +0000 (11:06 -0700)
Test "perf probe of function from different CU" only checks if the perf
command has failed and doesn't test the --funcs output. In the issue
reported in the previous commit, the garbage output of the --funcs
command was being ignored by the test when it could have been caught.

The script first makes use of --funcs option with the perf probe command
to check if the function "foo" exists in the testfile before adding a
probe to it in the next command. The output of probe...--funcs command
is redirected to stdout, therefore, add '| grep "foo"' to validate the
result.

Signed-off-by: Chaitanya S Prakash <chaitanyas.prakash@arm.com>
Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Cc: anshuman.khandual@arm.com
Cc: james.clark@arm.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20240601125946.1741414-11-ChaitanyaS.Prakash@arm.com
tools/perf/tests/shell/test_uprobe_from_different_cu.sh

index 319f36ebb9a40aebe0626f1dcb94488686f9a296..82bc774a078a15d5b419efc83fa8dc438cfc1c87 100755 (executable)
@@ -77,7 +77,7 @@ gcc -g -Og -flto -c ${temp_dir}/testfile-foo.c -o ${temp_dir}/testfile-foo.o
 gcc -g -Og -c ${temp_dir}/testfile-main.c -o ${temp_dir}/testfile-main.o
 gcc -g -Og -o ${temp_dir}/testfile ${temp_dir}/testfile-foo.o ${temp_dir}/testfile-main.o
 
-perf probe -x ${temp_dir}/testfile --funcs foo
+perf probe -x ${temp_dir}/testfile --funcs foo | grep "foo"
 perf probe -x ${temp_dir}/testfile foo
 
 cleanup