From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Bronnikov <estetus@gmail.com> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 1/2] test: support number value of tag in LuaJIT-tests Date: Fri, 6 Dec 2024 14:17:57 +0300 [thread overview] Message-ID: <Z1LdZTjGxivOSDQH@root> (raw) In-Reply-To: <Z1LbfvJTyiBawFyt@pony> Hi, Sergey! Thanks for the review! See my answers below. On 06.12.24, Sergey Bronnikov wrote: > Hi, Sergey, > > thanks for the patch! > LGTM with minor comment below. > > On 16:42 Thu 05 Dec , Sergey Kaplun wrote: > >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). > > Usually, for such janitorial patches we add a note like > "Required by the following patch". Added the following line: | Required for the next patch. > > >--- > > test/LuaJIT-tests/test.lua | 7 ++++++- > > 1 file changed, 6 insertions(+), 1 deletion(-) > > > >diff --git a/test/LuaJIT-tests/test.lua b/test/LuaJIT-tests/test.lua > >index ab178331..2a535605 100644 > >--- a/test/LuaJIT-tests/test.lua > >+++ b/test/LuaJIT-tests/test.lua > >@@ -161,7 +161,12 @@ local function parse_args(t) > > error(arg .." does not expect an argument") > > end > > elseif arg:find"^[-+]" then > >- opts.tags[arg:sub(2)] = (arg:sub(1, 1) == "+") > >+ local tagval = arg:find"=" > >+ if tagval then > >+ opts.tags[arg:sub(2, tagval - 1)] = tonumber(arg:sub(tagval + 1)) > > I would also check a type here: > > --- a/test/LuaJIT-tests/test.lua > +++ b/test/LuaJIT-tests/test.lua > @@ -162,7 +162,7 @@ local function parse_args(t) > end > elseif arg:find"^[-+]" then > local tagval = arg:find"=" > - if tagval then > + if tagval and type(tagval) == 'number' then > opts.tags[arg:sub(2, tagval - 1)] = tonumber(arg:sub(tagval + 1)) > else > opts.tags[arg:sub(2)] = (arg:sub(1, 1) == "+") This check is excess, see the `string.find()` documentation [1]: | If it finds a match, then `find` returns the indices of `s` where this | occurrence starts and ends; otherwise, it returns `nil`. We have only two options here: a number or `nil`, so this `if` check is just enough. > > >+ else > >+ opts.tags[arg:sub(2)] = (arg:sub(1, 1) == "+") > >+ end > > elseif arg:find"^%d+$" then > > if not opts.numbers_to_run then > > opts.numbers_to_run = {} > >-- > >2.47.0 > > > > -- > sergeyb@ [1]: https://www.lua.org/manual/5.1/manual.html#pdf-string.find -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2024-12-06 11:18 UTC|newest] Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-12-05 13:42 [Tarantool-patches] [PATCH luajit 0/2] Fix LuaJIT tests for old libc versions Sergey Kaplun via Tarantool-patches 2024-12-05 13:42 ` [Tarantool-patches] [PATCH luajit 1/2] test: support number value of tag in LuaJIT-tests Sergey Kaplun via Tarantool-patches 2024-12-06 11:09 ` Sergey Bronnikov via Tarantool-patches 2024-12-06 11:17 ` Sergey Kaplun via Tarantool-patches [this message] 2024-12-06 13:42 ` Sergey Bronnikov via Tarantool-patches 2024-12-11 15:40 ` Maxim Kokryashkin via Tarantool-patches 2024-12-05 13:42 ` [Tarantool-patches] [PATCH luajit 2/2] test: fix LuaJIT-tests for old libc version Sergey Kaplun via Tarantool-patches 2024-12-06 11:25 ` Sergey Bronnikov via Tarantool-patches 2024-12-11 15:40 ` Maxim Kokryashkin via Tarantool-patches
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=Z1LdZTjGxivOSDQH@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=estetus@gmail.com \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 1/2] test: support number value of tag in LuaJIT-tests' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox