]> git.ozlabs.org Git - petitboot/blob - test/parser/test-native-short.c
lib/url: Include port in pb_url_to_string()
[petitboot] / test / parser / test-native-short.c
1 #include "parser-test.h"
2
3 void run_test(struct parser_test *test)
4 {
5         struct discover_boot_option *opt;
6         struct discover_context *ctx;
7
8         test_read_conf_file(test, "native-short.conf", "/boot/petitboot.conf");
9
10         test_run_parser(test, "native");
11
12         ctx = test->ctx;
13
14         check_boot_option_count(ctx, 1);
15
16         opt = get_boot_option(ctx, 0);
17
18         check_name(opt, "Ubuntu");
19         check_resolved_local_resource(opt->boot_image, ctx->device,
20                         "/boot/vmlinux-4.15.0-22-generic");
21         check_args(opt, "root=UUID=09d1034f-3cff-413a-af22-68be1fa5e3d8 ro");
22         check_resolved_local_resource(opt->initrd, ctx->device,
23                         "/boot/initrd.img-4.15.0-22-generic");
24 }