]> git.ozlabs.org Git - petitboot/blobdiff - test/parser/test-yaboot-partition.c
Change parser interface to allow stat
[petitboot] / test / parser / test-yaboot-partition.c
index 060698240aae30eb9c288ec36e3428d120cd9cda..462aee927438afb8913479fb08f5e90dbdd17cdf 100644 (file)
@@ -1,4 +1,5 @@
 #include "parser-test.h"
+#include <stdio.h>
 
 #if 0 /* PARSER_EMBEDDED_CONFIG */
 device=sda
@@ -14,7 +15,8 @@ void run_test(struct parser_test *test)
        struct discover_context *ctx;
        struct discover_device *dev;
 
-       test_read_conf_embedded(test);
+       test_read_conf_embedded(test, "/yaboot.conf");
+
        test_run_parser(test, "yaboot");
 
        ctx = test->ctx;
@@ -26,7 +28,7 @@ void run_test(struct parser_test *test)
        check_name(opt, "linux");
        check_unresolved_resource(opt->boot_image);
 
-       dev = test_create_device(ctx, "sda2");
+       dev = test_create_device(test, "sda2");
        test_hotplug_device(test, dev);
 
        check_resolved_local_resource(opt->boot_image, dev, "/vmlinux");