2 * Just test if we can load the python binding.
7 #include <linux/compiler.h>
12 int test__python_use(int subtest __maybe_unused
)
17 if (asprintf(&cmd
, "echo \"import sys ; sys.path.append('%s'); import perf\" | %s %s",
18 PYTHONPATH
, PYTHON
, verbose
? "" : "2> /dev/null") < 0)
21 ret
= system(cmd
) ? -1 : 0;