2012-12-15 00:06:13 +08:00
|
|
|
/*
|
|
|
|
* Just test if we can load the python binding.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
perf tests: Pass the subtest index to each test routine
Some tests have sub-tests we want to run, so allow passing this.
Wang tried to avoid having to touch all tests, but then, having the
test.func in an anonymous union makes the build fail on older compilers,
like the one in RHEL6, where:
test a = {
.func = foo,
};
fails.
To fix it leave the func pointer in the main structure and pass the subtest
index to all tests, end result function is the same, but we have just one
function pointer, not two, with and without the subtest index as an argument.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-5genj0ficwdmelpoqlds0u4y@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-11-19 23:01:48 +08:00
|
|
|
#include <linux/compiler.h>
|
2012-12-15 00:06:13 +08:00
|
|
|
#include "tests.h"
|
|
|
|
|
|
|
|
extern int verbose;
|
|
|
|
|
2017-08-04 02:16:31 +08:00
|
|
|
int test__python_use(struct test *test __maybe_unused, int subtest __maybe_unused)
|
2012-12-15 00:06:13 +08:00
|
|
|
{
|
|
|
|
char *cmd;
|
|
|
|
int ret;
|
|
|
|
|
2012-12-17 15:25:01 +08:00
|
|
|
if (asprintf(&cmd, "echo \"import sys ; sys.path.append('%s'); import perf\" | %s %s",
|
2017-02-17 16:17:38 +08:00
|
|
|
PYTHONPATH, PYTHON, verbose > 0 ? "" : "2> /dev/null") < 0)
|
2012-12-15 00:06:13 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
ret = system(cmd) ? -1 : 0;
|
|
|
|
free(cmd);
|
|
|
|
return ret;
|
|
|
|
}
|