forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
kernel/tools/perf/tests/shell/lib/probe.sh
....@@ -1,6 +1,12 @@
1
+# SPDX-License-Identifier: GPL-2.0
12 # Arnaldo Carvalho de Melo <acme@kernel.org>, 2017
23
34 skip_if_no_perf_probe() {
45 perf probe 2>&1 | grep -q 'is not a perf-command' && return 2
56 return 0
67 }
8
+
9
+skip_if_no_perf_trace() {
10
+ perf trace -h 2>&1 | grep -q -e 'is not a perf-command' -e 'trace command not available' && return 2
11
+ return 0
12
+}