]> git.ozlabs.org Git - petitboot/blob - test/parser/test-yaboot-partition-override.c
ui/ncurses: Fix boot editor segfault on update
[petitboot] / test / parser / test-yaboot-partition-override.c
1 #include "parser-test.h"
2
3 #if 0 /* PARSER_EMBEDDED_CONFIG */
4 device=sda1
5 partition=2
6
7 image=/vmlinux
8         label=linux
9 #endif
10
11 void run_test(struct parser_test *test)
12 {
13         struct discover_boot_option *opt;
14         struct discover_context *ctx;
15         struct discover_device *dev;
16
17         test_read_conf_embedded(test, "/yaboot.conf");
18
19         test_run_parser(test, "yaboot");
20
21         ctx = test->ctx;
22
23         check_boot_option_count(ctx, 1);
24
25         opt = get_boot_option(ctx, 0);
26
27         check_name(opt, "linux");
28         check_unresolved_resource(opt->boot_image);
29
30         dev = test_create_device(test, "sda2");
31         test_hotplug_device(test, dev);
32
33         check_resolved_local_resource(opt->boot_image, dev, "/vmlinux");
34 }