Add misc-include-cleaner
And fix the includes that are wrong.
Note, there is a very large ignore list included in the .clang-tidy
configcfile. These are things that clang-tidy doesn't yet handle
well, like knowing about a details include.
Change-Id: Ie3744f2c8cba68a8700b406449d6c2018a736952
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/test/include/credential_pipe_test.cpp b/test/include/credential_pipe_test.cpp
index c5b544b..0c72222 100644
--- a/test/include/credential_pipe_test.cpp
+++ b/test/include/credential_pipe_test.cpp
@@ -1,11 +1,18 @@
#include "credential_pipe.hpp"
+#include <unistd.h>
+
#include <boost/asio/io_context.hpp>
#include <boost/beast/core/file_posix.hpp>
+#include <boost/system/detail/error_code.hpp>
+#include <array>
+#include <cstddef>
+#include <functional>
#include <string>
#include <gmock/gmock.h>
+#include <gtest/gtest.h>
using ::testing::ElementsAre;