Skip to content
Snippets Groups Projects
Commit f44663ed authored by HustonMmmavr's avatar HustonMmmavr Committed by Kirill Yukhin
Browse files

test: fix regex in box-py/args.test.py

Regex for validating version was expecting a single
character (digit) for version `patch`, but it's not correct.
This patch fixes test behaviour for tarantool 1.10.10

Close #6039
parent 8d1ebd83
No related branches found
No related tags found
No related merge requests found
......@@ -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+(-\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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment