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>
20#include <folly/portability/GFlags.h>
21#include <folly/portability/GTest.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 */
28FOLLY_ATTR_WEAK int main(int argc, char** argv);
29
30int 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}
42