cregit-Linux how code gets into the kernel

Release 4.10 tools/perf/tests/python-use.c

Directory: tools/perf/tests
/*
 * 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

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo5995.16%266.67%
namhyung kimnamhyung kim34.84%133.33%
Total62100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo7696.20%266.67%
namhyung kimnamhyung kim33.80%133.33%
Total79100.00%3100.00%
Directory: tools/perf/tests
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.