blob: 8966cfd40c2a2942dec1cb5740fbd7017b140182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "parser-test.h"
void run_test(struct parser_test *test)
{
struct discover_boot_option *opt;
struct discover_context *ctx;
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_resolved_local_resource(opt->boot_image, test->ctx->device,
"/boot/vmlinuz-1.0-20121219-1");
check_resolved_local_resource(opt->initrd, test->ctx->device,
"/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");
}
|