]> git.ozlabs.org Git - petitboot/commitdiff
test/parser: Add variable expansion in Ubuntu conf file test
authorJeremy Kerr <jk@ozlabs.org>
Tue, 24 Sep 2013 06:00:24 +0000 (14:00 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Tue, 24 Sep 2013 06:00:24 +0000 (14:00 +0800)
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
test/parser/test-grub2-ubuntu-13_04-x86.c

index 145e4c0cfee1a919b0f911d86d8e387ff3567da3..60f1b1099bfca2629bb8cf40cd6fd50b3ece073c 100644 (file)
@@ -18,13 +18,13 @@ void run_test(struct parser_test *test)
        check_unresolved_resource(opt->boot_image);
        check_unresolved_resource(opt->initrd);
        check_name(opt, "Kubuntu GNU/Linux");
-       check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro   quiet splash $vt_handoff");
+       check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro quiet splash ");
 
        opt = get_boot_option(ctx, 1);
        check_unresolved_resource(opt->boot_image);
        check_unresolved_resource(opt->initrd);
        check_name(opt, "Kubuntu GNU/Linux, with Linux 3.8.0-19-generic");
-       check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro   quiet splash $vt_handoff");
+       check_args(opt, "root=UUID=29beca39-9181-4780-bbb2-ab5d4be59aaf ro quiet splash ");
 
        opt = get_boot_option(ctx, 2);
        check_name(opt, "Kubuntu GNU/Linux, with Linux 3.8.0-19-generic (recovery mode)");