Fix copyright lines
[folly.git] / folly / experimental / symbolizer / test / SymbolizerTest.cpp
index efcb4047a28a08e0e7d9436fffc7df9e9217375b..7d7330d8c63e74d528fb62d8c26da3a6efc095e5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2013-present Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 #include <cstdlib>
 
-#include <gtest/gtest.h>
-
 #include <folly/Range.h>
 #include <folly/String.h>
+#include <folly/portability/GTest.h>
 
-namespace folly { namespace symbolizer { namespace test {
+namespace folly {
+namespace symbolizer {
+namespace test {
 
-void foo() {
-}
+void foo() {}
 
 TEST(Symbolizer, Single) {
   Symbolizer symbolizer;
@@ -37,11 +37,11 @@ TEST(Symbolizer, Single) {
   // The version of clang we use doesn't generate a `.debug_aranges` section,
   // which the symbolizer needs to lookup the filename.
   constexpr bool built_with_clang =
-    #ifdef __clang__
+#ifdef __clang__
       true;
-    #else
+#else
       false;
-    #endif
+#endif
   if (!built_with_clang) {
     auto path = a.location.file.toString();
     folly::StringPiece basename(path);
@@ -114,8 +114,9 @@ TEST_F(ElfCacheTest, SignalSafeElfCache) {
     runElfCacheTest(symbolizer);
   }
 }
-
-}}}  // namespaces
+} // namespace test
+} // namespace symbolizer
+} // namespace folly
 
 // Can't use initFacebookLight since that would install its own signal handlers
 // Can't use initFacebookNoSignals since we cannot depend on common