From 3f0983e4006dee3b533ae1be87a662851b65bb69 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 22 Jan 2015 08:53:04 -0300 Subject: test: Set some options to reduce nondeterminism in functional tests - shortmess+=I: Remove intro screen - background=light: Disregard COLORFGBG environment variable --- test/functional/helpers.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/functional/helpers.lua') diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index fc699d22a3..c76979e894 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -5,7 +5,8 @@ local AsyncSession = require('nvim.async_session') local Session = require('nvim.session') local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim' -local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', '--embed'} +local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', + '--cmd', 'set shortmess+=I background=light', '--embed'} local prepend_argv if os.getenv('VALGRIND') then -- cgit