From c37e69dfc9df2d7adf442d2463633c067f5fceaf Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Thu, 9 May 2013 16:08:32 +0800 Subject: [PATCH] test/parser: Add yaboot test from a ppc64 RH8 machine Signed-off-by: Jeremy Kerr --- test/parser/Makefile.am | 6 +++-- test/parser/data/yaboot-rh8-ppc64.conf | 10 ++++++++ test/parser/test-yaboot-rh8-ppc64.c | 34 ++++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 test/parser/data/yaboot-rh8-ppc64.conf create mode 100644 test/parser/test-yaboot-rh8-ppc64.c diff --git a/test/parser/Makefile.am b/test/parser/Makefile.am index 1040670..f711c1e 100644 --- a/test/parser/Makefile.am +++ b/test/parser/Makefile.am @@ -29,11 +29,13 @@ TESTS = test-null \ test-grub2-f18-ppc64 \ test-kboot-single \ test-yaboot-single \ - test-yaboot-external + test-yaboot-external \ + test-yaboot-rh8-ppc64 check_PROGRAMS = $(TESTS) check_LIBRARIES = $(test_libs) -check_DATA = data/grub2-f18-ppc64.conf +check_DATA = data/grub2-f18-ppc64.conf \ + data/yaboot-rh8-ppc64.conf common_libs = $(top_builddir)/lib/libpbcore.la test_libs = libtest.o diff --git a/test/parser/data/yaboot-rh8-ppc64.conf b/test/parser/data/yaboot-rh8-ppc64.conf new file mode 100644 index 0000000..dc1a82e --- /dev/null +++ b/test/parser/data/yaboot-rh8-ppc64.conf @@ -0,0 +1,10 @@ +boot=/dev/sdb1 +timeout = 100 +default = linux + +image = /boot/vmlinuz-1.0-20121219-1 + label = linux + initrd = /boot/initrd-1.0-20121219-1.img + root = /dev/sdb2 + append = " 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" + 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"); +} -- 2.39.2