mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
b02672b130
* update pre-compiler * test passed for variable pars of print() * variable pars is tested ok for print() * skip arg_num check for variable * support *val in the preCompiler * add file * Merge branch 'dev' of https://gitee.com/lyon1998/pikascript into dev * fix warning * both update ByteCodeGen * use super instead of parent * create PikaList C list struct * use args inner the PikaStdData.List() * use PikaDict in PikaStdData.Dict() * support dict in c * support dict in c * clean Tinyobj
32 lines
758 B
C
32 lines
758 B
C
#include "gtest/gtest.h"
|
|
#include "test_common.h"
|
|
extern "C" {
|
|
#include "PikaMain.h"
|
|
#include "PikaParser.h"
|
|
#include "PikaStdLib_MemChecker.h"
|
|
#include "PikaVM.h"
|
|
#include "dataArgs.h"
|
|
#include "dataMemory.h"
|
|
#include "dataStrs.h"
|
|
#include "pikaScript.h"
|
|
#include "pika_config_gtest.h"
|
|
}
|
|
|
|
extern PikaMemInfo pikaMemInfo;
|
|
/* the log_buff of printf */
|
|
extern char log_buff[LOG_BUFF_MAX][LOG_SIZE];
|
|
|
|
TEST(cmodule, print_) {
|
|
/* init */
|
|
pikaMemInfo.heapUsedMax = 0;
|
|
PikaObj* pikaMain = newRootObj("pikaMain", New_PikaMain);
|
|
/* run */
|
|
obj_run(pikaMain, "print('test', 'test2')\n");
|
|
/* collect */
|
|
/* assert */
|
|
EXPECT_STREQ(log_buff[0], "test test2\r\n");
|
|
/* deinit */
|
|
obj_deinit(pikaMain);
|
|
EXPECT_EQ(pikaMemNow(), 0);
|
|
}
|