From f605f194eb45235989fc5ec91505201498834f24 Mon Sep 17 00:00:00 2001 From: amelia squires Date: Thu, 29 Aug 2024 00:10:05 -0500 Subject: should be working + tests --- src/reg.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/reg.c') diff --git a/src/reg.c b/src/reg.c index dbd3c48..7345d4b 100644 --- a/src/reg.c +++ b/src/reg.c @@ -6,6 +6,7 @@ #include "math.h" #include "net.h" #include "thread.h" +#include "test.h" #include #include @@ -36,6 +37,7 @@ open_common(math); open_common(config); open_common(net); open_common(thread); +open_common(test); #define push(T, name)\ lua_pushstring(L, #name);\ @@ -62,6 +64,7 @@ int luaopen_lullaby(lua_State* L) { push(top, config); push(top, net); push(top, thread); + push(top, test); luaI_tsets(L, top, "version", GIT_COMMIT) //lreg("array", array_function_list); //lreg("crypto", crypto_function_list); -- cgit v1.2.3