Make Observer.Stress test not fail under load
[folly.git] / folly / test / MPMCPipelineTest.cpp
index cc6fc64c2ee2779d6a09be98816327972e3acace..aed9f96920880987822abaf97b3b9ed9afafb0e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 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/MPMCPipeline.h"
+#include <folly/MPMCPipeline.h>
 
 #include <thread>
 #include <vector>
 
 #include <glog/logging.h>
-#include <gtest/gtest.h>
 
-#include "folly/Conv.h"
+#include <folly/Conv.h>
+#include <folly/portability/GTest.h>
 
 namespace folly { namespace test {
 
@@ -160,7 +160,6 @@ TEST(MPMCPipeline, MultiThreaded) {
 
 int main(int argc, char *argv[]) {
   testing::InitGoogleTest(&argc, argv);
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   return RUN_ALL_TESTS();
 }
-