Changes libcds library path
[junction.git] / test / main.cpp
1 #include "test.h"
2 #include <cds_test/stress_test.h>
3
4 int main(int argc, char** argv) {
5   // Read test config file
6   cds_test::init_config(argc, argv);
7
8   // Init Google test
9   ::testing::InitGoogleTest(&argc, argv);
10   int result = RUN_ALL_TESTS();
11   return result;
12 }