summaryrefslogtreecommitdiffstats
path: root/test/parser/test-grub2-f18-ppc64.c
blob: 4d7c8eca3886656647313dad09495deb0df481e9 (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
28
29
30
31
32
33
34

#include "parser-test.h"

void run_test(struct parser_test *test)
{
	struct discover_boot_option *opt;
	struct discover_context *ctx;
	int i;

	test_read_conf_file(test, "grub2-f18-ppc64.conf");
	test_run_parser(test, "grub2");

	ctx = test->ctx;

	check_boot_option_count(ctx, 2);

	for (i = 0; i < 2; i++) {
		opt = get_boot_option(ctx, i);

		check_resolved_local_resource(opt->boot_image, ctx->device,
				"/vmlinuz-3.6.10-4.fc18.ppc64p7");
		check_resolved_local_resource(opt->initrd, ctx->device,
				"/initramfs-3.6.10-4.fc18.ppc64p7.img");

		check_args(opt, "root=/dev/mapper/fedora_ltcfbl8eb-root ro "
				"rd.lvm.lv=fedora_ltcfbl8eb/swap rd.dm=0 "
				"rd.lvm.lv=fedora_ltcfbl8eb/root  rd.md=0 "
				"rd.luks=0 vconsole.keymap=us rhgb quiet");

		check_name(opt, i == 0 ?
				"Fedora" :
				"Fedora, with Linux 3.6.10-4.fc18.ppc64p7");
	}
}
OpenPOWER on IntegriCloud