]> git.ozlabs.org Git - petitboot/blob - test/parser/test-grub2-blscfg-opts-config.c
lib/process: Add process_get_stdout
[petitboot] / test / parser / test-grub2-blscfg-opts-config.c
1 #include "parser-test.h"
2
3 #if 0 /* PARSER_EMBEDDED_CONFIG */
4 set kernelopts=root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root
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                              "/loader/entries/6c063c8e48904f2684abde8eea303f41-4.15.2-302.fc28.x86_64.conf",
17                              "title Fedora (4.15.2-302.fc28.x86_64) 28 (Twenty Eight)\n"
18                              "linux /vmlinuz-4.15.2-302.fc28.x86_64\n"
19                              "initrd /initramfs-4.15.2-302.fc28.x86_64.img\n"
20                              "options $kernelopts\n");
21
22         test_read_conf_embedded(test, "/boot/grub2/grub.cfg");
23
24         test_run_parser(test, "grub2");
25
26         ctx = test->ctx;
27
28         opt = get_boot_option(ctx, 0);
29
30         check_args(opt, "root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root");
31 }