projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99a7f38
)
Clean up folly tests.
author
Michael Lee
<mzlee@fb.com>
Mon, 4 Jan 2016 17:42:21 +0000
(09:42 -0800)
committer
facebook-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
patch
|
blob
|
history
diff --git
a/folly/test/FormatTest.cpp
b/folly/test/FormatTest.cpp
index
85c8d8f
..
832c7c6
100644
(file)
--- a/
folly/test/FormatTest.cpp
+++ b/
folly/test/FormatTest.cpp
@@
-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();
-}