]> git.ozlabs.org Git - petitboot/blob - test/parser/test-grub2-blscfg-opts-grubenv.c
discover/grub2: Allow to separate the --id argument using a space char
[petitboot] / test / parser / test-grub2-blscfg-opts-grubenv.c
1 #include "parser-test.h"
2
3 #if 0 /* PARSER_EMBEDDED_CONFIG */
4 load_env
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_dir(test, test->ctx->device, "/loader/entries");
14
15         test_add_file_string(test, test->ctx->device,
16                              "/boot/grub2/grubenv",
17                              "# GRUB Environment Block\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 debug\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_args(opt, "root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root debug");
36 }