diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-10-13 16:22:03 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-10-13 16:22:03 -0300 |
commit | 0fd0f00fdbc9fdae7651b048d546fdfab2e47fce (patch) | |
tree | 0e23e6a5fbb150c57b46b5ce58aa992136fefcd9 | |
parent | 6cf4ecf5c51d735433b3348ad055187536b1b4b6 (diff) | |
download | linux-0fd0f00fdbc9fdae7651b048d546fdfab2e47fce.tar.bz2 |
perf tests: Show python test script in verbose mode
To help figure out where it is getting the binding.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/tests/python-use.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |