如何在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-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法
- 2024-08-21【Linux】gnome桌面环境切换KDE Plasma
- 2024-08-19如何安装 VMware Tools (macOS, Linux, Windows)
- 2024-08-15Linux部署Scrapy教程:入门级指南