Skip to content
Snippets Groups Projects
Commit 7e769d99 authored by Nikolay Shirokovskiy's avatar Nikolay Shirokovskiy Committed by Alexander Turenko
Browse files

test: reset readline configuration for justrun too

This fixes gh_8613_new_cli_behaviour_test run with my custom .inputrc
(I use vi-cmd-mode-string/vi-ins-mode-string).

We already reset readline configuration in interactive_tarantool.lua.

Follows up ground works done for #7774

NO_DOC=test harness
NO_TEST=test harness
NO_CHANGELOG=test harness

(cherry picked from commit 028c65e0)
parent 659a646b
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,10 @@ function justrun.tarantool(dir, env, args, opts)
local opts = opts or {}
assert(type(opts) == 'table')
-- Prevent system/user inputrc configuration file from
-- influencing testing code.
env['INPUTRC'] = '/dev/null'
local tarantool_exe = arg[-1]
-- Use popen.shell() instead of popen.new() due to lack of
-- cwd option in popen (gh-5633).
......
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