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] test: remove inline suppressions of _TARANTOOL Date: Mon, 10 Jun 2024 12:41:05 +0300 [thread overview] Message-ID: <ZmbKMY1aJUS61Z4y@root> (raw) In-Reply-To: <88eab16fca9056a057df5506a0af637c8d4a0ffd.1717682341.git.sergeyb@tarantool.org> Hi, Sergey! Thanks for the patch! LGTM, after fixing my comment below. On 06.06.24, Sergey Bronnikov wrote: > From: Sergey Bronnikov <sergeyb@tarantool.org> > > The patch defines _TARANTOOL as a global in luacheck configuration > file and removes inline suppressions in test files. > --- > Branch: https://github.com/tarantool/luajit/tree/ligurio/fix-_TARANTOOL > <snipped> > 12 files changed, 1 insertion(+), 12 deletions(-) > > diff --git a/.luacheckrc b/.luacheckrc > index a32012ca..62ceeaa2 100644 > --- a/.luacheckrc > +++ b/.luacheckrc > @@ -1,7 +1,7 @@ > -- Use the default LuaJIT globals. > std = 'luajit' > -- This fork also introduces a new global for misc API namespace. > -read_globals = { 'misc' } > +read_globals = { 'misc', '_TARANTOOL' } Can we use it only for <tarantool-tests> directory to avoid it appearing in the Lua sources inside the repository? =================================================================== diff --git a/.luacheckrc b/.luacheckrc index a32012ca..7b5634a5 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -3,6 +3,10 @@ std = 'luajit' -- This fork also introduces a new global for misc API namespace. read_globals = { 'misc' } +-- The `_TARANTOOL` global is often used for skip condition +-- checks. +files['test/tarantool-tests/'] = {read_globals = {'_TARANTOOL'}} + -- These files are inherited from the vanilla LuaJIT or different -- test suites and need to be coherent with the upstream. exclude_files = { =================================================================== > > -- These files are inherited from the vanilla LuaJIT or different > -- test suites and need to be coherent with the upstream. <snipped> > -- > 2.34.1 > -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2024-06-10 9:45 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-06-06 14:00 Sergey Bronnikov via Tarantool-patches 2024-06-10 9:41 ` Sergey Kaplun via Tarantool-patches [this message] 2024-06-11 10:00 ` Sergey Bronnikov via Tarantool-patches 2024-06-14 11:55 ` Maxim Kokryashkin via Tarantool-patches 2024-07-09 8:03 ` Sergey Kaplun 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=ZmbKMY1aJUS61Z4y@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=estetus@gmail.com \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit] test: remove inline suppressions of _TARANTOOL' \ /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