use ipmiblob library from ipmi-blob-tool
Drop all code that is now handled by the ipmiblob library provided by
the new ipmi-blob-tool. This is a library that can be included on the
BMC if necessary, but relies on nothing that is strictly meant for the
BMC.
Change-Id: Iadbf0bd89c58cafc436fba05ea43e21c49e2b669
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/test/tools_lpc_unittest.cpp b/test/tools_lpc_unittest.cpp
index 3a9d80e..1645ea5 100644
--- a/test/tools_lpc_unittest.cpp
+++ b/test/tools_lpc_unittest.cpp
@@ -1,9 +1,9 @@
-#include "blob_interface_mock.hpp"
#include "internal_sys_mock.hpp"
#include "io_mock.hpp"
#include "lpc.hpp"
#include <cstring>
+#include <ipmiblob/test/blob_interface_mock.hpp>
#include <gtest/gtest.h>
@@ -15,7 +15,7 @@
TEST(LpcHandleTest, verifySendsFileContents)
{
internal::InternalSysMock sysMock;
- BlobInterfaceMock blobMock;
+ ipmiblob::BlobInterfaceMock blobMock;
HostIoInterfaceMock ioMock;
LpcDataHandler handler(&blobMock, &ioMock, &sysMock);