X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2Futils.c;h=407ac80ba40e1184658f289e2f11df5801605118;hp=3e218e4af07d35292ab2acfde23cb9da2f7dd475;hb=d6166b471a9356355ed16747de3c0febd4b8cd3e;hpb=cdaae762f23d137eef7de73f2226f55090ddbec0 diff --git a/test/parser/utils.c b/test/parser/utils.c index 3e218e4..407ac80 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -262,6 +262,16 @@ void __check_name(struct discover_boot_option *opt, const char *name, } } +void __check_is_default(struct discover_boot_option *opt, + const char *file, int line) +{ + if (opt->option->is_default) + return; + + fprintf(stderr, "%s:%d: default check failed\n", file, line); + exit(EXIT_FAILURE); +} + void __check_resolved_local_resource(struct resource *res, struct discover_device *dev, const char *local_path, const char *file, int line)