]> git.ozlabs.org Git - petitboot/blob - test/parser/test-yaboot-rh8-ppc64.c
Add support for GPG signature enforcement on booted
[petitboot] / test / parser / test-yaboot-rh8-ppc64.c
1
2 #include "parser-test.h"
3
4 void run_test(struct parser_test *test)
5 {
6         struct discover_boot_option *opt;
7         struct discover_context *ctx;
8
9         test_read_conf_file(test, "yaboot-rh8-ppc64.conf", "/yaboot.conf");
10
11         test_run_parser(test, "yaboot");
12
13         ctx = test->ctx;
14
15         check_boot_option_count(ctx, 1);
16
17         opt = get_boot_option(ctx, 0);
18
19         check_resolved_local_resource(opt->boot_image, test->ctx->device,
20                         "/boot/vmlinuz-1.0-20121219-1");
21         check_resolved_local_resource(opt->initrd, test->ctx->device,
22                         "/boot/initrd-1.0-20121219-1.img");
23
24         check_args(opt, "root=/dev/sdb2 root=/dev/sdb2 ro crashkernel=auto "
25                         "rd_NO_LUKS rd_NO_MD console=hvc0 KEYTABLE=us quiet "
26                         "SYSFONT=latarcyrheb-sun16 LANG=en_US.utf8 rd_NO_LVM "
27                         "rd_NO_DM selinux=0 rootfsmode=ro");
28 }