diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-09-24 14:00:24 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-09-24 14:00:24 +0800 |
commit | 1a0b831d24ff93b2621ae1d57eaf0471bf7c0398 (patch) | |
tree | de593a63185b35601a85a9a59c628d0729294adf /test/parser | |
parent | cbe74bd95f301d60d6f2a9ed4f1d687a455e7d40 (diff) | |
download | talos-petitboot-1a0b831d24ff93b2621ae1d57eaf0471bf7c0398.tar.gz talos-petitboot-1a0b831d24ff93b2621ae1d57eaf0471bf7c0398.zip |
test/parser: Add variable expansion in Ubuntu conf file test
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/parser')
-rw-r--r-- | test/parser/test-grub2-ubuntu-13_04-x86.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)"); |