]> git.ozlabs.org Git - petitboot/blob - test/parser/test-grub2-blscfg-default-filename.c
configure: Add signed-boot openssl configuration support
[petitboot] / test / parser / test-grub2-blscfg-default-filename.c
1 #include "parser-test.h"
2
3 #if 0 /* PARSER_EMBEDDED_CONFIG */
4 set default=6c063c8e48904f2684abde8eea303f41-4.15.2-302.fc28.x86_64
5 blscfg
6 #endif
7
8 void run_test(struct parser_test *test)
9 {
10         struct discover_boot_option *opt;
11         struct discover_context *ctx;
12
13         test_add_file_string(test, test->ctx->device,
14                              "/loader/entries/6c063c8e48904f2684abde8eea303f41-4.15.2-302.fc28.x86_64.conf",
15                              "title Fedora (4.15.2-302.fc28.x86_64) 28 (Twenty Eight)\n"
16                              "linux /vmlinuz-4.15.2-302.fc28.x86_64\n"
17                              "initrd /initramfs-4.15.2-302.fc28.x86_64.img\n"
18                              "options root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root\n");
19
20         test_read_conf_embedded(test, "/boot/grub2/grub.cfg");
21
22         test_run_parser(test, "grub2");
23
24         ctx = test->ctx;
25
26         opt = get_boot_option(ctx, 0);
27
28         check_is_default(opt);
29 }