mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
15 lines
272 B
C
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;
|
|
}
|