mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
34 lines
909 B
C
34 lines
909 B
C
/* 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 "sbat.h"
|
|
#include "tests.h"
|
|
|
|
TEST(BOOT_SBAT) {
|
|
log_info("---SBAT-----------&<-----------------------------------------\n"
|
|
"%s"
|
|
"------------------>&-----------------------------------------",
|
|
#ifdef SBAT_DISTRO
|
|
SBAT_BOOT_SECTION_TEXT
|
|
#else
|
|
"(not defined)"
|
|
#endif
|
|
);
|
|
}
|
|
|
|
TEST(STUB_SBAT) {
|
|
log_info("---SBAT-----------&<-----------------------------------------\n"
|
|
"%s"
|
|
"------------------>&-----------------------------------------",
|
|
#ifdef SBAT_DISTRO
|
|
SBAT_STUB_SECTION_TEXT
|
|
#else
|
|
"(not defined)"
|
|
#endif
|
|
);
|
|
}
|
|
|
|
DEFINE_TEST_MAIN(LOG_INFO);
|