Convert aos over to flatbuffers
Everything builds, and all the tests pass. I suspect that some entries
are missing from the config files, but those will be found pretty
quickly on startup.
There is no logging or live introspection of queue messages.
Change-Id: I496ee01ed68f202c7851bed7e8786cee30df29f5
diff --git a/aos/ipc_lib/index_test.cc b/aos/ipc_lib/index_test.cc
index 689ed24..2e9a37b 100644
--- a/aos/ipc_lib/index_test.cc
+++ b/aos/ipc_lib/index_test.cc
@@ -1,7 +1,7 @@
#include "aos/ipc_lib/index.h"
-#include "aos/testing/test_logging.h"
#include "gtest/gtest.h"
+#include "glog/logging.h"
namespace aos {
namespace ipc_lib {
@@ -10,7 +10,8 @@
class QueueIndexTest : public ::testing::Test {
protected:
uint32_t GetIndex(const QueueIndex &index) {
- printf("Index, count: %x, %x\n", index.index_, index.count_);
+ LOG(INFO) << "Index, count: " << std::hex << index.index_ << ", "
+ << index.count_;
return index.index();
}