X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2Fparser-test.h;h=eb43c25c7c128eb57c24d4516432f4334ee3bcf2;hp=7e43a6843b8386eb0ad3586251292c80fefec41a;hb=b86a7a0533c4d723ea940ac2071f845f165f832c;hpb=e28232f4b8941ccd151abaaae3f18c32400436f3 diff --git a/test/parser/parser-test.h b/test/parser/parser-test.h index 7e43a68..eb43c25 100644 --- a/test/parser/parser-test.h +++ b/test/parser/parser-test.h @@ -9,6 +9,7 @@ struct parser_test { struct device_handler *handler; struct discover_context *ctx; + struct list files; struct config *config; struct { void *buf; @@ -35,6 +36,12 @@ int test_run_parser(struct parser_test *test, const char *parser_name); void test_hotplug_device(struct parser_test *test, struct discover_device *dev); +void test_add_file_data(struct parser_test *test, struct discover_device *dev, + const char *filename, void *data, int size); + +#define test_add_file_string(test, dev, filename, str) \ + test_add_file_data(test, dev, filename, str, sizeof(str)) + struct discover_boot_option *get_boot_option(struct discover_context *ctx, int idx);