如何在Linux下建立包含lua vm的unit test framwork
2021/7/17 7:10:18
本文主要是介绍如何在Linux下建立包含lua vm的unit test framwork,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
0 引言
lua是一种语法极为灵活、扩展性极强的“胶水语言”, 在使用lua/lua capi时常常会写出一些容易出错的code. 因此,有必要建立以lua vm为基础的unit test帮助程序员及早地发现bug,提高代码的质量。为此,有三件事情需要做。
1 编译配置googletest/googlemock环境
https://stackoverflow.com/questions/13513905/how-to-set-up-googletest-as-a-shared-library-on-linux
2 编译配置lua5.0
2.1 download src file: https://www.lua.org/ftp/lua-5.0.3.tar.gz
2.2 make
2.3 write testing code:
#include <stdio.h> #include <string.h> extern "C" {///< It is very important to wrap related header files into this cracket, or you will get some error message as below. #include "mylua/lua.h" #include "mylua/lauxlib.h" #include "mylua/lualib.h" } int main(void) { char buff[256] = "print(\"hello world!\n\")"; int error; lua_State* L = lua_open(); /* opens Lua */ luaopen_base(L); /* opens the basic library */ luaopen_table(L); /* opens the table library */ luaopen_io(L); /* opens the I/O library */ luaopen_string(L); /* opens the string lib. */ luaopen_math(L); /* opens the math lib. */ while (fgets(buff, sizeof(buff), stdin) != NULL) { error = luaL_loadbuffer(L, buff, strlen(buff), "line") || lua_pcall(L, 0, 0, 0); if (error) { fprintf(stderr, "%s", lua_tostring(L, -1)); lua_pop(L, 1); /* pop error message from the stack */ } } lua_close(L); return 0; }
2.3 use g++ to build:
g++ test.c -I $LD_HOME/include -L $LD_HOME/lib -llua -llualib -o app
3 集成测试
这篇关于如何在Linux下建立包含lua vm的unit test framwork的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南