Fix SimpleBarrier
[folly.git] / folly / test / FingerprintTest.cpp
index 76e97f4c098a2784992fa1cdf0929e42ffab0322..62de0481c45ea05d2fc1a3c84c8f9ed4dfb2312c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Facebook, Inc.
+ * Copyright 2016 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  */
 
-#include "folly/Fingerprint.h"
+#include <folly/Fingerprint.h>
 
 #include <glog/logging.h>
-#include <gtest/gtest.h>
 
-#include "folly/detail/SlowFingerprint.h"
-#include "folly/Benchmark.h"
+#include <folly/detail/SlowFingerprint.h>
+#include <folly/Benchmark.h>
+#include <folly/portability/GTest.h>
 
 using namespace folly;
 using namespace folly::detail;
@@ -165,11 +165,10 @@ TEST(Fingerprint, Alignment) {
 
 int main(int argc, char *argv[]) {
   testing::InitGoogleTest(&argc, argv);
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   auto ret = RUN_ALL_TESTS();
   if (!ret) {
     folly::runBenchmarksOnFlag();
   }
   return ret;
 }
-