From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: tarantool-patches@dev.tarantool.org, sergepetrenko@tarantool.org
Cc: v.shpilevoy@tarantool.org
Subject: [Tarantool-patches] [PATCH 1/2] luacheck: fix warnings in test/box
Date: Fri, 15 Jan 2021 14:22:29 +0300 [thread overview]
Message-ID: <82365527bf3aefe026e0c0e4d93f3acbb882391c.1610709207.git.sergeyb@tarantool.org> (raw)
In-Reply-To: <cover.1610709207.git.sergeyb@tarantool.org>
From: Sergey Bronnikov <sergeyb@tarantool.org>
Follows up #5455
---
test/box/gh-5304-insert_during_recovery.lua | 10 +++++-----
test/box/gh-5304-replace_during_recovery.lua | 1 +
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/test/box/gh-5304-insert_during_recovery.lua b/test/box/gh-5304-insert_during_recovery.lua
index ac6eef342..c8b6c5cfb 100644
--- a/test/box/gh-5304-insert_during_recovery.lua
+++ b/test/box/gh-5304-insert_during_recovery.lua
@@ -1,24 +1,24 @@
#!/usr/bin/env tarantool
-function none(old_space, new_space)
+local function none(old_space, new_space) -- luacheck: ignore
end
-function trigger_replace(old_space, new_space)
+local function trigger_replace(old_space, new_space) -- luacheck: ignore
box.space.temp:replace({1})
box.space.loc:replace({1})
end
-function trigger_insert(old_space, new_space)
+local function trigger_insert(old_space, new_space) -- luacheck: ignore
box.space.temp:insert({1})
box.space.loc:insert({1})
end
-function trigger_upsert(old_space, new_space)
+local function trigger_upsert(old_space, new_space) -- luacheck: ignore
box.space.temp:upsert({1}, {{'=', 1, 4}})
box.space.loc:upsert({1}, {{'=', 1, 4}})
end
-trigger = nil
+local trigger = nil
if arg[1] == 'none' then
trigger = none
diff --git a/test/box/gh-5304-replace_during_recovery.lua b/test/box/gh-5304-replace_during_recovery.lua
index d6a7099ac..8b9a657af 100644
--- a/test/box/gh-5304-replace_during_recovery.lua
+++ b/test/box/gh-5304-replace_during_recovery.lua
@@ -2,6 +2,7 @@
if arg[1] == 'replace' then
box.ctl.on_schema_init(function()
+ -- luacheck: ignore
box.space._index:on_replace(function(old_space, new_space)
if new_space[1] == 512 then
box.space.test:on_replace(function(old_tup, new_tup)
--
2.25.1
next prev parent reply other threads:[~2021-01-15 11:23 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-15 11:22 [Tarantool-patches] [PATCH 0/2] Fix new luacheck warnings in test/box-tap and test/box Sergey Bronnikov via Tarantool-patches
2021-01-15 11:22 ` Sergey Bronnikov via Tarantool-patches [this message]
2021-01-15 12:39 ` [Tarantool-patches] [PATCH 1/2] luacheck: fix warnings in test/box Serge Petrenko via Tarantool-patches
2021-01-15 12:54 ` Sergey Bronnikov via Tarantool-patches
2021-01-15 13:02 ` Serge Petrenko via Tarantool-patches
2021-01-15 20:32 ` Igor Munkin via Tarantool-patches
2021-01-15 11:22 ` [Tarantool-patches] [PATCH 2/2] luacheck: fix warnings in test/box-tap Sergey Bronnikov via Tarantool-patches
2021-01-15 12:40 ` Serge Petrenko via Tarantool-patches
2021-01-15 12:56 ` Sergey Bronnikov via Tarantool-patches
2021-01-15 13:03 ` Serge Petrenko via Tarantool-patches
2021-01-15 14:30 ` [Tarantool-patches] [PATCH 0/2] Fix new luacheck warnings in test/box-tap and test/box Kirill Yukhin 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=82365527bf3aefe026e0c0e4d93f3acbb882391c.1610709207.git.sergeyb@tarantool.org \
--to=tarantool-patches@dev.tarantool.org \
--cc=sergepetrenko@tarantool.org \
--cc=sergeyb@tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH 1/2] luacheck: fix warnings in test/box' \
/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