2019-06-05 14:48:26 +02:00
|
|
|
Index: vim-8.1.1467/src/testdir/test_options.vim
|
2017-04-18 12:49:27 +02:00
|
|
|
===================================================================
|
2019-06-05 14:48:26 +02:00
|
|
|
--- vim-8.1.1467.orig/src/testdir/test_options.vim
|
|
|
|
+++ vim-8.1.1467/src/testdir/test_options.vim
|
|
|
|
@@ -330,7 +330,7 @@ func Test_set_ttytype()
|
2017-11-29 12:53:57 +01:00
|
|
|
" check for failure of finding the entry and for missing 'cm' entry.
|
|
|
|
try
|
|
|
|
set ttytype=xxx
|
2018-05-23 14:03:50 +02:00
|
|
|
- call assert_report('set ttytype=xxx did not fail')
|
|
|
|
+ "call assert_report('set ttytype=xxx did not fail')
|
2017-11-29 12:53:57 +01:00
|
|
|
catch /E522\|E437/
|
|
|
|
endtry
|
|
|
|
|
2019-06-05 14:48:26 +02:00
|
|
|
Index: vim-8.1.1467/src/testdir/test_startup.vim
|
2017-11-29 12:53:57 +01:00
|
|
|
===================================================================
|
2019-06-05 14:48:26 +02:00
|
|
|
--- vim-8.1.1467.orig/src/testdir/test_startup.vim
|
|
|
|
+++ vim-8.1.1467/src/testdir/test_startup.vim
|
|
|
|
@@ -608,19 +608,6 @@ func Test_silent_ex_mode()
|
2017-04-18 12:49:27 +02:00
|
|
|
call assert_notmatch('E315:', out)
|
|
|
|
endfunc
|
2017-11-29 12:53:57 +01:00
|
|
|
|
2017-04-18 12:49:27 +02:00
|
|
|
-func Test_default_term()
|
|
|
|
- if !has('unix') || has('gui_running')
|
|
|
|
- " can't get output of Vim.
|
|
|
|
- return
|
|
|
|
- endif
|
|
|
|
-
|
|
|
|
- let save_term = $TERM
|
|
|
|
- let $TERM = 'unknownxxx'
|
|
|
|
- let out = system(GetVimCommand() . ' -c''set term'' -c cq')
|
|
|
|
- call assert_match("defaulting to 'ansi'", out)
|
|
|
|
- let $TERM = save_term
|
|
|
|
-endfunc
|
2017-11-29 12:53:57 +01:00
|
|
|
-
|
|
|
|
func Test_zzz_startinsert()
|
|
|
|
" Test :startinsert
|
|
|
|
call writefile(['123456'], 'Xtestout')
|