summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_spell.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-10 14:08:26 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-10 14:08:26 +0200
commitc25e702deec74771e49f6c2df4cda7a1f97d0c1e (patch)
tree673153202668037b4c0ffc65ac7e143f276d9a7c /src/testdir/test_spell.vim
parent073e779640d089445c7289393db94d1ceb4ddb17 (diff)
patch 8.1.2131: MSVC tests failv8.1.2131
Problem: MSVC tests fail. Solution: Replace backslashes with slashes.
Diffstat (limited to 'src/testdir/test_spell.vim')
-rw-r--r--src/testdir/test_spell.vim11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim
index 523126652d..9cbfaa50e8 100644
--- a/src/testdir/test_spell.vim
+++ b/src/testdir/test_spell.vim
@@ -128,20 +128,21 @@ endfunc
func Test_spellinfo()
new
+ let runtime = substitute($VIMRUNTIME, '\\', '/', 'g')
set enc=latin1 spell spelllang=en
- call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n$", execute('spellinfo'))
+ call assert_match("^\nfile: " .. runtime .. "/spell/en.latin1.spl\n$", execute('spellinfo'))
set enc=cp1250 spell spelllang=en
- call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.ascii.spl\n$", execute('spellinfo'))
+ call assert_match("^\nfile: " .. runtime .. "/spell/en.ascii.spl\n$", execute('spellinfo'))
set enc=utf-8 spell spelllang=en
- call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.utf-8.spl\n$", execute('spellinfo'))
+ call assert_match("^\nfile: " .. runtime .. "/spell/en.utf-8.spl\n$", execute('spellinfo'))
set enc=latin1 spell spelllang=en_us,en_nz
call assert_match("^\n" .
- \ "file: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n" .
- \ "file: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n$", execute('spellinfo'))
+ \ "file: " .. runtime .. "/spell/en.latin1.spl\n" .
+ \ "file: " .. runtime.. "/spell/en.latin1.spl\n$", execute('spellinfo'))
set spell spelllang=
call assert_fails('spellinfo', 'E756:')