diff options
author | Stanislav Fomichev <sdf@google.com> | 2019-08-06 10:45:28 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-08-06 17:17:52 -0700 |
commit | 66bd2ec1e0d9781133eb1a14eddb68facc69d54b (patch) | |
tree | 5cef2161f112d43cc771f7afc0f89c5bbcd5964c /tools/testing/selftests/bpf/test_progs.c | |
parent | 946152b3c5d6bab128db8eee226ec2665429b79c (diff) | |
download | linux-66bd2ec1e0d9781133eb1a14eddb68facc69d54b.tar.gz |
selftests/bpf: test_progs: test__printf -> printf
Now that test__printf is a simple wraper around printf, let's drop it
(and test__vprintf as well).
Cc: Andrii Nakryiko <andriin@fb.com>
Acked-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/testing/selftests/bpf/test_progs.c')
-rw-r--r-- | tools/testing/selftests/bpf/test_progs.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/tools/testing/selftests/bpf/test_progs.c b/tools/testing/selftests/bpf/test_progs.c index 6ea289ba307b..6c11c796ea1f 100644 --- a/tools/testing/selftests/bpf/test_progs.c +++ b/tools/testing/selftests/bpf/test_progs.c @@ -105,20 +105,6 @@ void test__force_log() { env.test->force_log = true; } -void test__vprintf(const char *fmt, va_list args) -{ - vprintf(fmt, args); -} - -void test__printf(const char *fmt, ...) -{ - va_list args; - - va_start(args, fmt); - test__vprintf(fmt, args); - va_end(args); -} - struct ipv4_packet pkt_v4 = { .eth.h_proto = __bpf_constant_htons(ETH_P_IP), .iph.ihl = 5, @@ -310,7 +296,7 @@ static int libbpf_print_fn(enum libbpf_print_level level, { if (!env.very_verbose && level == LIBBPF_DEBUG) return 0; - test__vprintf(format, args); + vprintf(format, args); return 0; } |