cregit-Linux how code gets into the kernel

Release 4.11 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 > 0 ? "" : "2> /dev/null") < 0) return -1; ret = system(cmd) ? -1 : 0; free(cmd); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo5992.19%250.00%
Namhyung Kim57.81%250.00%
Total64100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo7693.83%250.00%
Namhyung Kim56.17%250.00%
Total81100.00%4100.00%
Directory: tools/perf/tests
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.