Clean up folly tests.
authorMichael Lee <mzlee@fb.com>
Mon, 4 Jan 2016 17:42:21 +0000 (09:42 -0800)
committerfacebook-github-bot-4 <folly-bot@fb.com>
Mon, 4 Jan 2016 18:20:20 +0000 (10:20 -0800)
Summary: Clean up and remove unecessary gflags use.

Reviewed By: yfeldblum

Differential Revision: D2795904

fb-gh-sync-id: 99cccb4dc32a051b3d552b72cbc9243e20ba8127

folly/test/FormatTest.cpp

index 85c8d8fbaeccd0bb30a55ba23b8fd01eb525436c..832c7c676152b4fd6f2068ab184f76a1c8b8d60e 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <folly/Format.h>
 
-#include <gflags/gflags.h>
 #include <gtest/gtest.h>
 
 #include <string>
@@ -508,9 +507,3 @@ TEST(Format, Extending) {
                        "another formatter"),
             "Extending {a {formatter}} in {another formatter}");
 }
-
-int main(int argc, char *argv[]) {
-  testing::InitGoogleTest(&argc, argv);
-  gflags::ParseCommandLineFlags(&argc, &argv, true);
-  return RUN_ALL_TESTS();
-}