]> git.ozlabs.org Git - petitboot/blob - test/parser/test-yaboot-rh8-ppc64.c
discover: fix segfault on failed boot image load
[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         struct discover_device *dev;
9
10         test_read_conf_file(test, "yaboot-rh8-ppc64.conf");
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_unresolved_resource(opt->boot_image);
20         check_unresolved_resource(opt->initrd);
21
22         dev = test_create_device(ctx, "sdb1");
23         test_hotplug_device(test, dev);
24
25         check_resolved_local_resource(opt->boot_image, dev,
26                         "/boot/vmlinuz-1.0-20121219-1");
27         check_resolved_local_resource(opt->initrd, dev,
28                         "/boot/initrd-1.0-20121219-1.img");
29
30         check_args(opt, "root=/dev/sdb2 root=/dev/sdb2 ro crashkernel=auto "
31                         "rd_NO_LUKS rd_NO_MD console=hvc0 KEYTABLE=us quiet "
32                         "SYSFONT=latarcyrheb-sun16 LANG=en_US.utf8 rd_NO_LVM "
33                         "rd_NO_DM selinux=0 rootfsmode=ro");
34 }