Clang-format aos
It has drifted... Clean it up a bit.
Change-Id: I2fe31a2187b4f690634ae6942786575db20192af
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/aos/testing/gtest_main.cc b/aos/testing/gtest_main.cc
index c8e3172..a6e944c 100644
--- a/aos/testing/gtest_main.cc
+++ b/aos/testing/gtest_main.cc
@@ -1,6 +1,7 @@
-#include <iostream>
#include <getopt.h>
+#include <iostream>
+
#include "aos/init.h"
#include "gflags/gflags.h"
#include "glog/logging.h"
@@ -17,7 +18,7 @@
namespace testing {
// Actually declared/defined in //aos/testing:test_logging.
-void SetLogFileName(const char* filename) __attribute__((weak));
+void SetLogFileName(const char *filename) __attribute__((weak));
void ForcePrintLogsDuringTests() __attribute__((weak));
} // namespace testing
diff --git a/aos/testing/path.cc b/aos/testing/path.cc
index f999e58..f63fd97 100644
--- a/aos/testing/path.cc
+++ b/aos/testing/path.cc
@@ -1,4 +1,5 @@
#include "aos/testing/path.h"
+
#include "absl/strings/str_cat.h"
namespace aos {
diff --git a/aos/testing/path.h b/aos/testing/path.h
index 1abad74..7f4187d 100644
--- a/aos/testing/path.h
+++ b/aos/testing/path.h
@@ -7,7 +7,7 @@
namespace aos {
namespace testing {
-// Returns the path to the provided artifact which works
+// Returns the path to the provided artifact which works
std::string ArtifactPath(std::string_view path);
} // namespace testing
diff --git a/aos/testing/test_logging.h b/aos/testing/test_logging.h
index 0a26b07..5e01879 100644
--- a/aos/testing/test_logging.h
+++ b/aos/testing/test_logging.h
@@ -15,7 +15,7 @@
// Redirect the messages enabled by EnableTestLogging() function to a file.
// By default the messages are printed to standard output.
-void SetLogFileName(const char* filename);
+void SetLogFileName(const char *filename);
// Force the messages to be printed as they are handled by the logging
// framework. This can be useful for tests that hang where no messages would
diff --git a/aos/testing/test_logging_test.cc b/aos/testing/test_logging_test.cc
index f39c6cf..e7f9806 100644
--- a/aos/testing/test_logging_test.cc
+++ b/aos/testing/test_logging_test.cc
@@ -2,9 +2,8 @@
#include <thread>
-#include "gtest/gtest.h"
-
#include "aos/logging/logging.h"
+#include "gtest/gtest.h"
namespace aos {
namespace testing {