X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2Ftest-yaboot-rh8-ppc64.c;fp=test%2Fparser%2Ftest-yaboot-rh8-ppc64.c;h=97d0162697686976cff40ac8d288caf9669d21ac;hp=0000000000000000000000000000000000000000;hb=c37e69dfc9df2d7adf442d2463633c067f5fceaf;hpb=3397cc6598f9272287fcdd3aedf5a7d4c3191254;ds=sidebyside diff --git a/test/parser/test-yaboot-rh8-ppc64.c b/test/parser/test-yaboot-rh8-ppc64.c new file mode 100644 index 0000000..97d0162 --- /dev/null +++ b/test/parser/test-yaboot-rh8-ppc64.c @@ -0,0 +1,34 @@ + +#include "parser-test.h" + +void run_test(struct parser_test *test) +{ + struct discover_boot_option *opt; + struct discover_context *ctx; + struct discover_device *dev; + + test_read_conf_file(test, "yaboot-rh8-ppc64.conf"); + test_run_parser(test, "yaboot"); + + ctx = test->ctx; + + check_boot_option_count(ctx, 1); + + opt = get_boot_option(ctx, 0); + + check_unresolved_resource(opt->boot_image); + check_unresolved_resource(opt->initrd); + + dev = test_create_device(ctx, "sdb1"); + test_hotplug_device(test, dev); + + check_resolved_local_resource(opt->boot_image, dev, + "/boot/vmlinuz-1.0-20121219-1"); + check_resolved_local_resource(opt->initrd, dev, + "/boot/initrd-1.0-20121219-1.img"); + + check_args(opt, "root=/dev/sdb2 root=/dev/sdb2 ro crashkernel=auto " + "rd_NO_LUKS rd_NO_MD console=hvc0 KEYTABLE=us quiet " + "SYSFONT=latarcyrheb-sun16 LANG=en_US.utf8 rd_NO_LVM " + "rd_NO_DM selinux=0 rootfsmode=ro"); +}