diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-01 08:31:03 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-01 10:45:56 -0400 |
commit | 6e9e8eb38290925a03f75dc8f2b261045c3870e4 (patch) | |
tree | 507025a358d32fe71d76f4b88b4254803c494f92 /src | |
parent | 3784827f8df9a324c395a0589d12fc80f4eea2d3 (diff) | |
download | rneovim-6e9e8eb38290925a03f75dc8f2b261045c3870e4.tar.gz rneovim-6e9e8eb38290925a03f75dc8f2b261045c3870e4.tar.bz2 rneovim-6e9e8eb38290925a03f75dc8f2b261045c3870e4.zip |
test/old/win: debug Test_w_arg
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_startup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index 744fae4e60..e0dc0e0075 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -932,7 +932,7 @@ func Test_w_arg() " Test for failing to open the script output file. This test works only when " the language is English. - if v:lang == "C" || v:lang =~ '^[Ee]n' + if !has('win32') && (v:lang == "C" || v:lang =~ '^[Ee]n') call mkdir("Xdir") let m = system(GetVimCommand() .. " -w Xdir") call assert_equal("Cannot open for script output: \"Xdir\"\n", m) |