#ifdef FEAT_EVAL
/* When testing some errors are turned into a normal message. */
if (ignore_error(s))
- return msg(s);
+ /* don't call msg() if it results in a dialog */
+ return msg_use_printf() ? FALSE : msg(s);
#endif
called_emsg = TRUE;
" Test for resetting "secure" flag after GUI has started.
" Must be run first.
func Test_1_set_secure()
- " Ignore the "failed to create input context" error.
- call test_ignore_error('E285')
-
set exrc secure
gui -f
call assert_equal(1, has('gui_running'))
let test_response = 'Yes, I can.'
let vim_exe = exepath(v:progpath)
let testee = 'VIMRUNTIME=' . $VIMRUNTIME . '; export VIMRUNTIME;'
- \ . vim_exe . ' -f -g -u NONE -U NONE --noplugin -c ''%s'''
- let cmd = 'call feedkeys("'
+ \ . vim_exe
+ \ . ' -f -g -u NONE -U NONE --noplugin --cmd ''%s'' -c ''%s'''
+ " Ignore the "failed to create input context" error.
+ let cmd1 = 'call test_ignore_error("E285")'
+ let cmd2 = 'call feedkeys("'
\ . '\"+p'
\ . ':s/' . test_call . '/' . test_response . '/\<CR>'
\ . '\"+yis'
\ . ':q!\<CR>", "tx")'
- let run_vimtest = printf(testee, cmd)
+ let run_vimtest = printf(testee, cmd1, cmd2)
" Set the quoteplus register to test_call, and another gvim will launched.
" Then, it first tries to paste the content of its own quotedplus register