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