aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/prog_tests/btf_tag.c
blob: 91821f42714dadce67a38406c006589b00e92271 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2021 Facebook */
#include <test_progs.h>
#include "tag.skel.h"

void test_btf_tag(void)
{
	struct tag *skel;

	skel = tag__open_and_load();
	if (!ASSERT_OK_PTR(skel, "btf_tag"))
		return;

	if (skel->rodata->skip_tests) {
		printf("%s:SKIP: btf_tag attribute not supported", __func__);
		test__skip();
	}

	tag__destroy(skel);
}