From: Andrii Grynenko Date: Wed, 8 Mar 2017 22:13:08 +0000 (-0800) Subject: Fixes to always call Singleton's registrationComplete()/initFacebook() X-Git-Tag: v2017.03.13.00~10 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=commitdiff_plain;h=ad9b56c1b66912acdc80d2844105e4460687d229 Fixes to always call Singleton's registrationComplete()/initFacebook() Reviewed By: yfeldblum Differential Revision: D4671818 fbshipit-source-id: 80154adfef238f0be62da12fb843e22de1ae65ca --- diff --git a/folly/io/async/test/AsyncSSLSocketTest2.cpp b/folly/io/async/test/AsyncSSLSocketTest2.cpp index e3026a17..06b6db7d 100644 --- a/folly/io/async/test/AsyncSSLSocketTest2.cpp +++ b/folly/io/async/test/AsyncSSLSocketTest2.cpp @@ -18,6 +18,7 @@ #include #include +#include #include #include #include @@ -208,6 +209,6 @@ int main(int argc, char *argv[]) { #endif }); testing::InitGoogleTest(&argc, argv); - gflags::ParseCommandLineFlags(&argc, &argv, true); + folly::init(&argc, &argv); return RUN_ALL_TESTS(); }