summaryrefslogtreecommitdiffstats
path: root/src/test/test-sbat.c
blob: d8546b1ad99bd56499c40513992a32f59ec951eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* 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"
                 "%s"
                 "------------------>&-----------------------------------------",
#ifdef SBAT_DISTRO
                 SBAT_BOOT_SECTION_TEXT,
                 SBAT_STUB_SECTION_TEXT
#else
                 "(not defined)",
                 ""
#endif
        );
}

DEFINE_TEST_MAIN(LOG_INFO);