summaryrefslogtreecommitdiff
path: root/tests/lib/test_frrlua.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-08-01 14:08:25 +0300
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2023-08-02 04:53:38 +0000
commit85728c9c4fddb1b62b4bf83ffcf4d5e92000cceb (patch)
treee1a55eb11934893adc4eb609778615c19f26aece /tests/lib/test_frrlua.c
parent728976960bc669594e670c08de3b13779fdb06d8 (diff)
lib: Do not use time_t as a special Lua encoder/decoder
This is purely an integer (long long/long), and causes issues for 32-bit systems. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org> (cherry picked from commit 27dbf81a7375ccb352a35261c6c9ee3aa3fcb98f)
Diffstat (limited to 'tests/lib/test_frrlua.c')
-rw-r--r--tests/lib/test_frrlua.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/lib/test_frrlua.c b/tests/lib/test_frrlua.c
index 4f492db5bf..701e171c84 100644
--- a/tests/lib/test_frrlua.c
+++ b/tests/lib/test_frrlua.c
@@ -22,10 +22,11 @@ static void test_encode_decode(void)
assert(lua_gettop(L) == 0);
time_t time_a = 100;
- time_t time_b = time_a;
+ time_t time_b;
- lua_pushtimet(L, &time_a);
- lua_decode_timet(L, -1, &time_a);
+ lua_pushinteger(L, time_a);
+ time_b = lua_tointeger(L, -1);
+ lua_pop(L, 1);
assert(time_a == time_b);
assert(lua_gettop(L) == 0);