summaryrefslogtreecommitdiffstats
path: root/src/test/test-sbat.c
blob: 1a905418d1daad248e6f85a00dc9e01d2dee0b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: LGPL-2.1-or-later */

/* We include efi_config.h after undefining PROJECT_VERSION which is also defined in config.h. */
#undef PROJECT_VERSION
#include "efi_config.h"

#include "build.h"
#include "sbat.h"
#include "tests.h"

TEST(sbat_section_text) {
        log_info("---SBAT-----------&<----------------------------------------\n"
                 "%s"
                 "------------------>&-----------------------------------------",
#ifdef SBAT_DISTRO
                 SBAT_SECTION_TEXT
#else
                 "(not defined)"
#endif
        );
}

DEFINE_TEST_MAIN(LOG_INFO);