From: Jeremy Kerr Date: Tue, 24 Sep 2013 06:00:24 +0000 (+0800) Subject: test/parser: Add variable expansion in Ubuntu conf file test X-Git-Tag: v1.0.0~435 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=1a0b831d24ff93b2621ae1d57eaf0471bf7c0398;hp=cbe74bd95f301d60d6f2a9ed4f1d687a455e7d40 test/parser: Add variable expansion in Ubuntu conf file test Signed-off-by: Jeremy Kerr --- diff --git a/test/parser/test-grub2-ubuntu-13_04-x86.c b/test/parser/test-grub2-ubuntu-13_04-x86.c index 145e4c0..60f1b10 100644 --- a/test/parser/test-grub2-ubuntu-13_04-x86.c +++ b/test/parser/test-grub2-ubuntu-13_04-x86.c @@ -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)");