aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-07 16:12:01 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-08 10:25:12 -0400
commitb868f87310c4fc108ad13be5b0ba260599d3b6d9 (patch)
treebfa8b8d3a946405310f33ab87415a63446b857d2 /src
parenta64e0e6a58ae29fd7a673a81bee668d7eeed3a73 (diff)
downloadrneovim-b868f87310c4fc108ad13be5b0ba260599d3b6d9.tar.gz
rneovim-b868f87310c4fc108ad13be5b0ba260599d3b6d9.tar.bz2
rneovim-b868f87310c4fc108ad13be5b0ba260599d3b6d9.zip
test/old: ignore defaults.vim assertion
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_startup.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim
index f119e9d5bc..b1a05d9c1b 100644
--- a/src/nvim/testdir/test_startup.vim
+++ b/src/nvim/testdir/test_startup.vim
@@ -264,11 +264,11 @@ func Test_V_arg()
call assert_equal(" verbose=0\n", out)
let out = system(GetVimCommand() . ' --clean -es -X -V2 -c "set verbose?" -cq')
- call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nSearching for \"filetype\.vim\".*\n", out)
+ " call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nSearching for \"filetype\.vim\".*\n", out)
call assert_match(" verbose=2\n", out)
let out = system(GetVimCommand() . ' --clean -es -X -V15 -c "set verbose?" -cq')
- call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nline 1: \" The default vimrc file\..* verbose=15\n", out)
+ " call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nline 1: \" The default vimrc file\..* verbose=15\n", out)
endfunc
" Test the -V[N]{filename} argument to set the 'verbose' option to N
@@ -276,7 +276,7 @@ endfunc
func Test_V_file_arg()
if RunVim([], [], ' --clean -X -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
let out = join(readfile('Xverbosefile'), "\n")
- call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
+ " call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
call assert_match("\n verbose=2\n", out)
call assert_match("\n verbosefile=Xverbosefile", out)
endif