From: sergeyb@tarantool.org To: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org Subject: [Tarantool-patches] [PATCH 1/4] replication: run clear_synchro_queue() with unconfigured box Date: Tue, 17 Nov 2020 19:13:49 +0300 [thread overview] Message-ID: <41492964d52aa46391a621e640f1ffc83bf5a0b0.1605629206.git.sergeyb@tarantool.org> (raw) In-Reply-To: <cover.1605629206.git.sergeyb@tarantool.org> From: Sergey Bronnikov <sergeyb@tarantool.org> Part of #4849 --- test/app-tap/cfg.test.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/app-tap/cfg.test.lua b/test/app-tap/cfg.test.lua index ba6b735ab..3d89a5167 100755 --- a/test/app-tap/cfg.test.lua +++ b/test/app-tap/cfg.test.lua @@ -3,7 +3,13 @@ local fiber = require('fiber') local tap = require('tap') local test = tap.test("cfg") -test:plan(11) +test:plan(12) + +-- +-- gh-4849: clear synchro queue is null with unconfigured box +-- +local ok, err = pcall(box.ctl.clear_synchro_queue(), nil) +test:isnil(ok, 'execute clear_synchro_queue with unconfigured box') -- -- gh-4282: box.cfg should not allow nor just ignore nil UUID. -- 2.25.1
next prev parent reply other threads:[~2020-11-17 16:14 UTC|newest] Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-11-17 16:13 [Tarantool-patches] [PATCH 0/4 v3] Additional qsync tests sergeyb 2020-11-17 16:13 ` sergeyb [this message] 2020-11-21 14:41 ` [Tarantool-patches] [PATCH 1/4] replication: run clear_synchro_queue() with unconfigured box Vladislav Shpilevoy 2020-11-23 14:44 ` Sergey Bronnikov 2020-11-17 16:13 ` [Tarantool-patches] [PATCH 2/4] replication: test clear_synchro_queue() function sergeyb 2020-11-21 14:41 ` Vladislav Shpilevoy 2020-11-23 15:13 ` Sergey Bronnikov 2020-11-17 16:13 ` [Tarantool-patches] [PATCH 3/4] replication: add test with random leaders promotion and demotion sergeyb 2020-11-21 14:41 ` Vladislav Shpilevoy 2020-11-24 8:39 ` Sergey Bronnikov 2020-11-25 22:02 ` Vladislav Shpilevoy 2020-11-17 16:13 ` [Tarantool-patches] [PATCH 4/4] replication: add test with change space sync mode in a loop sergeyb 2020-11-21 14:41 ` Vladislav Shpilevoy 2020-11-23 15:42 ` Sergey Bronnikov 2020-11-25 22:02 ` Vladislav Shpilevoy
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=41492964d52aa46391a621e640f1ffc83bf5a0b0.1605629206.git.sergeyb@tarantool.org \ --to=sergeyb@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 1/4] replication: run clear_synchro_queue() with unconfigured 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