Commit 045b233a authored by Andrii Nakryiko's avatar Andrii Nakryiko Committed by Alexei Starovoitov

selftests/bpf: Remove recently reintroduced legacy btf__dedup() use

We've added one extra patch that added back the use of legacy
btf__dedup() variant. Clean that up.
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20211201232824.3166325-5-andrii@kernel.org
parent a15d408b
...@@ -364,7 +364,7 @@ static void test_split_dup_struct_in_cu() ...@@ -364,7 +364,7 @@ static void test_split_dup_struct_in_cu()
"\t'f2' type_id=1 bits_offset=32"); "\t'f2' type_id=1 bits_offset=32");
/* ..dedup them... */ /* ..dedup them... */
err = btf__dedup(btf1, NULL, NULL); err = btf__dedup(btf1, NULL);
if (!ASSERT_OK(err, "btf_dedup")) if (!ASSERT_OK(err, "btf_dedup"))
goto cleanup; goto cleanup;
...@@ -405,7 +405,7 @@ static void test_split_dup_struct_in_cu() ...@@ -405,7 +405,7 @@ static void test_split_dup_struct_in_cu()
"\t'f1' type_id=4 bits_offset=0\n" "\t'f1' type_id=4 bits_offset=0\n"
"\t'f2' type_id=4 bits_offset=32"); "\t'f2' type_id=4 bits_offset=32");
err = btf__dedup(btf2, NULL, NULL); err = btf__dedup(btf2, NULL);
if (!ASSERT_OK(err, "btf_dedup")) if (!ASSERT_OK(err, "btf_dedup"))
goto cleanup; goto cleanup;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment