From: Vladimir Davydov via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: kyukhin@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH] test: fix box-py/args.test.py for new release policy Date: Wed, 11 Aug 2021 18:49:20 +0300 [thread overview] Message-ID: <872cac573757fd3caa544aeec6d05b51762f215e.1628691477.git.vdavydov@tarantool.org> (raw) The test assumes that a version string looks like this 2.9.0-123-gabcabcababc. We want to append a flow string after <major>.<minor>.<patch>. Fix the test accordingly. Needed for #6183 --- https://github.com/tarantool/tarantool/issues/6183 https://github.com/tarantool/tarantool/tree/vdavydov/fix-test-for-new-release-policy test/box-py/args.test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/box-py/args.test.py b/test/box-py/args.test.py index f368da880bdb..012a81a07348 100644 --- a/test/box-py/args.test.py +++ b/test/box-py/args.test.py @@ -22,7 +22,7 @@ sys.stdout.push_filter("unrecognized option.*", "unrecognized option") server.test_option("-Z") server.test_option("--no-such-option") server.test_option("--no-such-option --version") -sys.stdout.push_filter(".* (\d+)\.\d+\.\d+(-\d+-\w+)?", "Tarantool \\1.minor.patch-<rev>-<commit>") +sys.stdout.push_filter(".* (\d+)\.\d+\.\d+(-\w+)?(-\d+)?(-\w+)?", "Tarantool \\1.minor.patch-<rev>-<commit>") sys.stdout.push_filter("Target: .*", "Target: platform <build>") sys.stdout.push_filter(".*Disable shared arena since.*\n", "") sys.stdout.push_filter("Build options: .*", "Build options: flags") -- 2.25.1
next reply other threads:[~2021-08-11 15:49 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-11 15:49 Vladimir Davydov via Tarantool-patches [this message] 2021-08-17 9:45 ` Kirill Yukhin via Tarantool-patches 2021-08-17 10:56 ` Vladimir Davydov 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=872cac573757fd3caa544aeec6d05b51762f215e.1628691477.git.vdavydov@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=kyukhin@tarantool.org \ --cc=vdavydov@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH] test: fix box-py/args.test.py for new release policy' \ /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