diff options
author | Jiri Olsa <jolsa@kernel.org> | 2019-09-02 11:33:09 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-09-25 15:51:49 +0300 |
commit | 379dd98c3d77de920f09f1933592982d200e076a (patch) | |
tree | ba210fce5cfe58e1e19e677db6d3caaf76f0b30b /tools/perf/lib/tests/test-cpumap.c | |
parent | 428dab813a56ce9402f359dc35a3ccdfcaea9429 (diff) | |
download | linux-379dd98c3d77de920f09f1933592982d200e076a.tar.xz |
libperf: Add libperf_init() call to the tests
Add libperf_init() call to the automated tests.
Committer notes:
Added missing stdarg.h and/or stdio.h to places using vfprintf.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lore.kernel.org/lkml/20190913132355.21634-34-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/lib/tests/test-cpumap.c')
-rw-r--r-- | tools/perf/lib/tests/test-cpumap.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/lib/tests/test-cpumap.c b/tools/perf/lib/tests/test-cpumap.c index 76a43cfb83a1..aa34c20df07e 100644 --- a/tools/perf/lib/tests/test-cpumap.c +++ b/tools/perf/lib/tests/test-cpumap.c @@ -1,13 +1,23 @@ // SPDX-License-Identifier: GPL-2.0 +#include <stdarg.h> +#include <stdio.h> #include <perf/cpumap.h> #include <internal/tests.h> +static int libperf_print(enum libperf_print_level level, + const char *fmt, va_list ap) +{ + return vfprintf(stderr, fmt, ap); +} + int main(int argc, char **argv) { struct perf_cpu_map *cpus; __T_START; + libperf_init(libperf_print); + cpus = perf_cpu_map__dummy_new(); if (!cpus) return -1; |