Fix build issue on arm linux
[trackerpp.git] / test / TestMain.cpp
1 #include "gtest/gtest.h"
2
3 int main(int argc, char** argv) {
4   // Disables elapsed time by default.
5   ::testing::GTEST_FLAG(print_time) = false;
6
7   // This allows the user to override the flag on the command line.
8   ::testing::InitGoogleTest(&argc, argv);
9
10   return RUN_ALL_TESTS();
11 }