diff options
| author | Stanislav Fomichev <[email protected]> | 2019-08-06 17:45:28 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2019-08-07 00:17:52 +0000 |
| commit | 66bd2ec1e0d9781133eb1a14eddb68facc69d54b (patch) | |
| tree | 5cef2161f112d43cc771f7afc0f89c5bbcd5964c /tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c | |
| parent | selftests/bpf: test_progs: switch to open_memstream (diff) | |
| download | kernel-66bd2ec1e0d9781133eb1a14eddb68facc69d54b.tar.gz kernel-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 <[email protected]>
Acked-by: Andrii Nakryiko <[email protected]>
Signed-off-by: Stanislav Fomichev <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c b/tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c index 356d2c017a9c..ac44fda84833 100644 --- a/tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c +++ b/tools/testing/selftests/bpf/prog_tests/stacktrace_build_id.c @@ -109,8 +109,8 @@ retry: if (build_id_matches < 1 && retry--) { bpf_link__destroy(link); bpf_object__close(obj); - test__printf("%s:WARN:Didn't find expected build ID from the map, retrying\n", - __func__); + printf("%s:WARN:Didn't find expected build ID from the map, retrying\n", + __func__); goto retry; } |
