]> git.ozlabs.org Git - petitboot/blobdiff - test/parser/handler.c
test: Replace parser tests with empty framework
[petitboot] / test / parser / handler.c
diff --git a/test/parser/handler.c b/test/parser/handler.c
new file mode 100644 (file)
index 0000000..f585c31
--- /dev/null
@@ -0,0 +1,28 @@
+
+#include <talloc/talloc.h>
+#include <types/types.h>
+
+#include "device-handler.h"
+
+
+void discover_server_notify_device_add(struct discover_server *server,
+               struct device *device)
+{
+       (void)server;
+       (void)device;
+}
+
+void discover_server_notify_boot_option_add(struct discover_server *server,
+               struct boot_option *option)
+{
+       (void)server;
+       (void)option;
+}
+
+void discover_server_notify_device_remove(struct discover_server *server,
+               struct device *device)
+{
+       (void)server;
+       (void)device;
+}
+