| 1234567891011121314 |
- #include "gtest/gtest.h"
- #include "test_common.h"
- extern "C" {
- #include "dataMemory.h"
- #include "pika_config_gtest.h"
- }
- int main(int argc, char** argv) {
- ::testing::InitGoogleTest(&argc, argv);
- int res = RUN_ALL_TESTS();
- mem_pool_deinit();
- return res;
- }
|