tools: blob: implement layer above ipmi
Implement the layer above actual IPMI calls, such that we can verify the
behavior. There is a layer beneath this that'll compute CRCs before
passing the commands down, that will go in next.
Change-Id: I0b8e3aa93c171d829e32727c7bb1b411659d80bd
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/test/Makefile.am b/test/Makefile.am
index aac24a1..f6a9263 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -26,7 +26,8 @@
firmware_delete_unittest \
firmware_sessionstat_unittest \
firmware_commit_unittest \
- file_handler_unittest
+ file_handler_unittest \
+ tools_blob_unittest
TESTS = $(check_PROGRAMS)
@@ -65,3 +66,6 @@
file_handler_unittest_SOURCES = file_handler_unittest.cpp
file_handler_unittest_LDADD = $(top_builddir)/file_handler.o -lstdc++fs
+
+tools_blob_unittest_SOURCES = tools_blob_unittest.cpp
+tools_blob_unittest_LDADD = $(top_builddir)/tools/blob_handler.o