perf test: test_intel_pt.sh: Print a message when skipping kernel tracing
authorAdrian Hunter <adrian.hunter@intel.com>
Fri, 14 Oct 2022 17:09:01 +0000 (20:09 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sat, 15 Oct 2022 13:13:16 +0000 (10:13 -0300)
Messages display with the perf test -v option. Add a message to show when
skipping a test because the user cannot do kernel tracing.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20221014170905.64069-4-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/tests/shell/test_intel_pt.sh

index 334836f..9c746ff 100755 (executable)
@@ -117,7 +117,14 @@ test_system_wide_side_band()
 
 can_kernel()
 {
-       perf_record_no_decode -o "${tmpfile}" -e dummy:k true >/dev/null 2>&1 || return 2
+       if [ -z "${can_kernel_trace}" ] ; then
+               can_kernel_trace=0
+               perf_record_no_decode -o "${tmpfile}" -e dummy:k true >/dev/null 2>&1 && can_kernel_trace=1
+       fi
+       if [ ${can_kernel_trace} -eq 0 ] ; then
+               echo "SKIP: no kernel tracing"
+               return 2
+       fi
        return 0
 }