proxygen
TestMain.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2016-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <folly/init/Init.h>
18 
19 #include <folly/Portability.h>
22 
23 /*
24  * This is the recommended main function for all tests.
25  * The Makefile links it into all of the test programs so that tests do not need
26  * to - and indeed should typically not - define their own main() functions
27  */
28 FOLLY_ATTR_WEAK int main(int argc, char** argv);
29 
30 int main(int argc, char** argv) {
31 #if FOLLY_HAVE_LIBGFLAGS
32  // Enable glog logging to stderr by default.
33  gflags::SetCommandLineOptionWithMode(
34  "logtostderr", "1", gflags::SET_FLAGS_DEFAULT);
35 #endif
36 
37  ::testing::InitGoogleTest(&argc, argv);
38  folly::Init init(&argc, &argv);
39 
40  return RUN_ALL_TESTS();
41 }
#define FOLLY_ATTR_WEAK
Definition: CPortability.h:167
int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_
Definition: gtest.h:2232
void init()
char ** argv
FOLLY_ATTR_WEAK int main(int argc, char **argv)
Definition: TestMain.cpp:30
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
Definition: gtest.cc:5370