Skip to content

Commit c265b6a

Browse files
committed
test: support number value of tag in LuaJIT-tests
The LuaJIT-tests suite lacks the ability to specify tags with custom values. This patch adds the ability to specify number tags in the format `+tag=number`. It is useful for version specification of system libraries (like libc).
1 parent b52fe97 commit c265b6a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/LuaJIT-tests/test.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,12 @@ local function parse_args(t)
161161
error(arg .." does not expect an argument")
162162
end
163163
elseif arg:find"^[-+]" then
164-
opts.tags[arg:sub(2)] = (arg:sub(1, 1) == "+")
164+
local tagval = arg:find"="
165+
if tagval then
166+
opts.tags[arg:sub(2, tagval - 1)] = tonumber(arg:sub(tagval + 1))
167+
else
168+
opts.tags[arg:sub(2)] = (arg:sub(1, 1) == "+")
169+
end
165170
elseif arg:find"^%d+$" then
166171
if not opts.numbers_to_run then
167172
opts.numbers_to_run = {}

0 commit comments

Comments
 (0)