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: v5.10-rc1~91^2~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fd0f00fdbc9fdae7651b048d546fdfab2e47fce;p=thirdparty%2Fkernel%2Flinux.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 40ab72149ce1f..98c6d474aa6f2 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;