mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
b359062172
* add PLOOC * add PLOOC to kernal * remove unrequired files * remove pack * fix plooc ci in test/*.cpp * add test_common.h Co-authored-by: Gabriel Wang <embedded_zhuoran@Hotmail.com>
16 lines
293 B
C
16 lines
293 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) {
|
|
mem_pool_init();
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
int res = RUN_ALL_TESTS();
|
|
mem_pool_deinit();
|
|
return res;
|
|
}
|