]> git.ozlabs.org Git - petitboot/blobdiff - 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
index c77c589b77079f7810e9952324ba1b973920ceb4..2dffd1b730c938c6c1b5fc6c3f6d004156153d0a 100644 (file)
@@ -10,6 +10,8 @@ void run_test(struct parser_test *test)
        struct discover_boot_option *opt;
        struct discover_context *ctx;
 
+       test_add_dir(test, test->ctx->device, "/loader/entries");
+
        test_add_file_string(test, test->ctx->device,
                             "/boot/grub2/grubenv",
                             "# GRUB Environment Block\n"
@@ -20,7 +22,7 @@ void run_test(struct parser_test *test)
                             "title Fedora (4.15.2-302.fc28.x86_64) 28 (Twenty Eight)\n"
                             "linux /vmlinuz-4.15.2-302.fc28.x86_64\n"
                             "initrd /initramfs-4.15.2-302.fc28.x86_64.img\n"
-                            "options $kernelopts\n");
+                            "options $kernelopts debug\n");
 
        test_read_conf_embedded(test, "/boot/grub2/grub.cfg");
 
@@ -30,5 +32,5 @@ void run_test(struct parser_test *test)
 
        opt = get_boot_option(ctx, 0);
 
-       check_args(opt, "root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root");
+       check_args(opt, "root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root debug");
 }