[PATCH] perf test: Silence perf check subcommand when not supported

From: Thomas Richter
Date: Wed Sep 11 2024 - 08:30:00 EST


Perf subcommand check might not be supported and prints an
error message when used:

# perf check feature -q libtraceevent
perf: 'check' is not a perf-command. See 'perf --help'.

Did you mean one of these?
c2c
sched
#

Drop this error message, the return code is sufficient.

Signed-off-by: Thomas Richter <tmricht@xxxxxxxxxxxxx>
---
tools/perf/tests/shell/lib/probe_vfs_getname.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/tests/shell/lib/probe_vfs_getname.sh b/tools/perf/tests/shell/lib/probe_vfs_getname.sh
index 5c33ec7a5a63..697fbe296a62 100644
--- a/tools/perf/tests/shell/lib/probe_vfs_getname.sh
+++ b/tools/perf/tests/shell/lib/probe_vfs_getname.sh
@@ -32,7 +32,7 @@ skip_if_no_debuginfo() {
# check if perf is compiled with libtraceevent support
skip_no_probe_record_support() {
if [ $had_vfs_getname -eq 1 ] ; then
- perf check feature -q libtraceevent && return 1
+ perf check feature -q libtraceevent >/dev/null 2>&1 && return 1
return 2
fi
}
--
2.46.0