From: Michael Lee Date: Mon, 4 Jan 2016 17:42:21 +0000 (-0800) Subject: Clean up folly tests. X-Git-Tag: deprecate-dynamic-initializer~170 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=commitdiff_plain;h=43db7ae3a01bef16d95705aec6768702c8bf4090 Clean up folly tests. Summary: Clean up and remove unecessary gflags use. Reviewed By: yfeldblum Differential Revision: D2795904 fb-gh-sync-id: 99cccb4dc32a051b3d552b72cbc9243e20ba8127 --- diff --git a/folly/test/FormatTest.cpp b/folly/test/FormatTest.cpp index 85c8d8fb..832c7c67 100644 --- a/folly/test/FormatTest.cpp +++ b/folly/test/FormatTest.cpp @@ -16,7 +16,6 @@ #include -#include #include #include @@ -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(); -}