diff options
Diffstat (limited to 'src/test/test-sbat.c')
-rw-r--r-- | src/test/test-sbat.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/test-sbat.c b/src/test/test-sbat.c new file mode 100644 index 0000000..1a90541 --- /dev/null +++ b/src/test/test-sbat.c @@ -0,0 +1,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); |