main.cpp 272 B

1234567891011121314
  1. #include "gtest/gtest.h"
  2. #include "test_common.h"
  3. extern "C" {
  4. #include "dataMemory.h"
  5. #include "pika_config_gtest.h"
  6. }
  7. int main(int argc, char** argv) {
  8. ::testing::InitGoogleTest(&argc, argv);
  9. int res = RUN_ALL_TESTS();
  10. mem_pool_deinit();
  11. return res;
  12. }