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/prog_tests/l4lb_all.c | |
parent | 946152b3c5d6bab128db8eee226ec2665429b79c (diff) | |
download | linux-66bd2ec1e0d9781133eb1a14eddb68facc69d54b.tar.gz linux-66bd2ec1e0d9781133eb1a14eddb68facc69d54b.tar.bz2 linux-66bd2ec1e0d9781133eb1a14eddb68facc69d54b.zip |
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/prog_tests/l4lb_all.c')
-rw-r--r-- | tools/testing/selftests/bpf/prog_tests/l4lb_all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/l4lb_all.c b/tools/testing/selftests/bpf/prog_tests/l4lb_all.c index 5ce572c03a5f..20ddca830e68 100644 --- a/tools/testing/selftests/bpf/prog_tests/l4lb_all.c +++ b/tools/testing/selftests/bpf/prog_tests/l4lb_all.c @@ -74,7 +74,7 @@ static void test_l4lb(const char *file) } if (bytes != MAGIC_BYTES * NUM_ITER * 2 || pkts != NUM_ITER * 2) { error_cnt++; - test__printf("test_l4lb:FAIL:stats %lld %lld\n", bytes, pkts); + printf("test_l4lb:FAIL:stats %lld %lld\n", bytes, pkts); } out: bpf_object__close(obj); |