pikapython/test/main.cpp
2022-09-26 21:47:52 +08:00

15 lines
272 B
C

#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;
}