mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
e9ee0dce45
Use the header file util/debug.h instead of declaration of verbose variable. Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Link: http://lkml.kernel.org/r/20180528134817.36643-1-tmricht@linux.ibm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
25 lines
536 B
C
25 lines
536 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Just test if we can load the python binding.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <linux/compiler.h>
|
|
#include "tests.h"
|
|
#include "util/debug.h"
|
|
|
|
int test__python_use(struct test *test __maybe_unused, 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;
|
|
}
|