]> git.ozlabs.org Git - petitboot/blob - test/parser/test-yaboot-single.c
test/lib: build with -DEBUG
[petitboot] / test / parser / test-yaboot-single.c
1
2 #include "parser-test.h"
3
4 #if 0 /* PARSER_EMBEDDED_CONFIG */
5 default=linux
6
7 image=/vmlinux
8         label=linux
9         initrd=/initrd
10 #endif
11
12 void run_test(struct parser_test *test)
13 {
14         struct discover_boot_option *opt;
15         struct discover_context *ctx;
16
17         test_read_conf_embedded(test);
18         test_run_parser(test, "yaboot");
19
20         ctx = test->ctx;
21
22         check_boot_option_count(ctx, 1);
23
24         opt = get_boot_option(ctx, 0);
25
26         check_name(opt, "linux");
27         check_resolved_local_resource(opt->boot_image, ctx->device, "/vmlinux");
28         check_resolved_local_resource(opt->initrd, ctx->device, "/initrd");
29 }