Refactors Folly map test cases to use cdsstress library
[folly.git] / folly / stress-test / main.cpp
1 #include <cds_test/stress_test.h>
2
3 int main(int argc, char** argv) {
4   // Read test config file
5   cds_test::init_config(argc, argv);
6
7   // Init Google test
8   ::testing::InitGoogleTest(&argc, argv);
9   int result = RUN_ALL_TESTS();
10   return result;
11 }