2 * Just test if we can load the python binding.
11 int test__python_use(void)
16 if (asprintf(&cmd
, "echo \"import sys ; sys.path.append('%s'); import perf\" | %s %s",
17 PYTHONPATH
, PYTHON
, verbose
? "" : "2> /dev/null") < 0)
20 ret
= system(cmd
) ? -1 : 0;