Release 4.10 tools/perf/tests/python-use.c
/*
* Just test if we can load the python binding.
*/
#include <stdio.h>
#include <stdlib.h>
#include <linux/compiler.h>
#include "tests.h"
extern int verbose;
int test__python_use(int subtest __maybe_unused)
{
char *cmd;
int ret;
if (asprintf(&cmd, "echo \"import sys ; sys.path.append('%s'); import perf\" | %s %s",
PYTHONPATH, PYTHON, verbose ? "" : "2> /dev/null") < 0)
return -1;
ret = system(cmd) ? -1 : 0;
free(cmd);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
arnaldo carvalho de melo | arnaldo carvalho de melo | 59 | 95.16% | 2 | 66.67% |
namhyung kim | namhyung kim | 3 | 4.84% | 1 | 33.33% |
| Total | 62 | 100.00% | 3 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
arnaldo carvalho de melo | arnaldo carvalho de melo | 76 | 96.20% | 2 | 66.67% |
namhyung kim | namhyung kim | 3 | 3.80% | 1 | 33.33% |
| Total | 79 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.