summaryrefslogtreecommitdiffstats
path: root/test/parser/test-yaboot-external.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/parser/test-yaboot-external.c')
-rw-r--r--test/parser/test-yaboot-external.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/parser/test-yaboot-external.c b/test/parser/test-yaboot-external.c
new file mode 100644
index 0000000..6d48b27
--- /dev/null
+++ b/test/parser/test-yaboot-external.c
@@ -0,0 +1,36 @@
+
+#include "parser-test.h"
+
+#if 0 /* PARSER_EMBEDDED_CONFIG */
+default=
+
+image=external:/vmlinux
+ label=linux
+ initrd=external:/initrd
+#endif
+
+void run_test(struct parser_test *test)
+{
+ struct discover_boot_option *opt;
+ struct discover_context *ctx;
+ struct discover_device *dev;
+
+ test_read_conf_embedded(test);
+ test_run_parser(test, "yaboot");
+
+ ctx = test->ctx;
+
+ check_boot_option_count(ctx, 1);
+
+ opt = get_boot_option(ctx, 0);
+
+ check_name(opt, "linux");
+ check_unresolved_resource(opt->boot_image);
+ check_unresolved_resource(opt->initrd);
+
+ dev = test_create_device(ctx, "external");
+ test_hotplug_device(test, dev);
+
+ check_resolved_local_resource(opt->boot_image, dev, "/vmlinux");
+ check_resolved_local_resource(opt->initrd, dev, "/initrd");
+}
OpenPOWER on IntegriCloud