summaryrefslogtreecommitdiff
path: root/tests/lib/test_frrlua.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-11-29 15:14:46 +0200
committerGitHub <noreply@github.com>2023-11-29 15:14:46 +0200
commit36547f400e332ecd6ac64b566b48a8701c3aa2f6 (patch)
treec15c763cf85196616fa11cca87bfd9e03220deed /tests/lib/test_frrlua.c
parente6e846de238255f9995b71c24d287b0f26c50c24 (diff)
parentfca8ee275c1f51e19aa64a4cc5175cbc88bf8d41 (diff)
Merge pull request #9012 from dlqs/lua-poly
Refactor decoder for Lua hook system
Diffstat (limited to 'tests/lib/test_frrlua.c')
-rw-r--r--tests/lib/test_frrlua.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/lib/test_frrlua.c b/tests/lib/test_frrlua.c
index 701e171c84..2760a273bd 100644
--- a/tests/lib/test_frrlua.c
+++ b/tests/lib/test_frrlua.c
@@ -13,14 +13,22 @@ static void test_encode_decode(void)
{
lua_State *L = luaL_newstate();
- long long a = 123;
- long long b = a;
+ int a = 123;
+ int b = a;
lua_pushintegerp(L, &a);
lua_decode_integerp(L, -1, &a);
assert(a == b);
assert(lua_gettop(L) == 0);
+ long long ll_a = 123L;
+ long long ll_b = a;
+
+ lua_pushlonglongp(L, &ll_a);
+ lua_decode_longlongp(L, -1, &ll_a);
+ assert(ll_a == ll_b);
+ assert(lua_gettop(L) == 0);
+
time_t time_a = 100;
time_t time_b;