From: Arnaldo Carvalho de Melo Date: Tue, 13 Oct 2020 19:22:03 +0000 (-0300) Subject: perf tests: Show python test script in verbose mode X-Git-Tag: howlett/maple_spf/20210104~776^2~31 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0fd0f00fdbc9fdae7651b048d546fdfab2e47fce;p=users%2Fjedix%2Flinux-maple.git perf tests: Show python test script in verbose mode To help figure out where it is getting the binding. Cc: Adrian Hunter Cc: Ian Rogers Cc: Jiri Olsa Cc: Namhyung Kim Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/tests/python-use.c b/tools/perf/tests/python-use.c index 40ab72149ce1..98c6d474aa6f 100644 --- a/tools/perf/tests/python-use.c +++ b/tools/perf/tests/python-use.c @@ -18,6 +18,7 @@ int test__python_use(struct test *test __maybe_unused, int subtest __maybe_unuse PYTHONPATH, PYTHON, verbose > 0 ? "" : "2> /dev/null") < 0) return -1; + pr_debug("python usage test: \"%s\"\n", cmd); ret = system(cmd) ? -1 : 0; free(cmd); return ret;