From 37b44934a532523a4483584a3d923ac7f4b8e2f0 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 5 Aug 2024 17:13:50 -0400 Subject: [PATCH] teuthology/suite: add len() lupa function Namespacing for this is weird which is why I missed it. Signed-off-by: Patrick Donnelly --- teuthology/suite/fragment-merge.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/suite/fragment-merge.lua b/teuthology/suite/fragment-merge.lua index 856bdedb49..6be2e0b879 100644 --- a/teuthology/suite/fragment-merge.lua +++ b/teuthology/suite/fragment-merge.lua @@ -9,6 +9,7 @@ local lua_allowlist = { tostring = tostring, py_attrgetter = python.as_attrgetter, py_dict = python.builtins.dict, + py_len = python.builtins.len, py_list = python.builtins.list, py_tuple = python.builtins.tuple, py_enumerate = python.enumerate,