summaryrefslogtreecommitdiffstats
path: root/test/parser/test-grub2-source-recursion-infinite.c
blob: fbcc5a3f57b23e65ebb1fbd0298ead49d78a2275 (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
35
36
37
38
39
40
41
42
43

/* check that have a maximum source recursion limit */

#include "parser-test.h"

#if 0 /* PARSER_EMBEDDED_CONFIG */

name=a$name

menuentry $name {
	linux /a
}

source /grub/grub.cfg

#endif

void run_test(struct parser_test *test)
{
	struct discover_boot_option *opt;
	struct discover_context *ctx;
	struct discover_device *dev;

	ctx = test->ctx;
	dev = ctx->device;

	test_read_conf_embedded(test, "/grub/grub.cfg");

	test_run_parser(test, "grub2");

	/* we error out after 10 levels, but we should still have
	 * parse results up to that point
	 */
	check_boot_option_count(ctx, 11);

	opt = get_boot_option(ctx, 0);
	check_name(opt, "a");
	check_resolved_local_resource(opt->boot_image, dev, "/a");

	opt = get_boot_option(ctx,10);
	check_name(opt, "aaaaaaaaaaa");
	check_resolved_local_resource(opt->boot_image, dev, "/a");
}
OpenPOWER on IntegriCloud