1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 3 /* We include efi_config.h after undefining PROJECT_VERSION which is also defined in config.h. */ 4 #undef PROJECT_VERSION 5 #include "efi_config.h" 6 7 #include "build.h" 8 #include "sbat.h" 9 #include "tests.h" 10 TEST(sbat_section_text)11TEST(sbat_section_text) { 12 log_info("---SBAT-----------&<----------------------------------------\n" 13 "%s" 14 "------------------>&-----------------------------------------", 15 #ifdef SBAT_DISTRO 16 SBAT_SECTION_TEXT 17 #else 18 "(not defined)" 19 #endif 20 ); 21 } 22 23 DEFINE_TEST_MAIN(LOG_INFO); 24