commit | 3321e9d8a36c91c62d8ba3d43430b5c213b87f8b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Aug 06 23:03:59 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Aug 06 23:03:59 2016 +0200 |
tree | a90dc20b86ba4b5905b5421141483474255b7b7c | |
parent | 472a0a880a709c027f4b19cfa56c08e78818112d [diff] |
patch 7.4.2173 Problem: Can't test help on MS-Windows. Solution: Skip the test.
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index d2463f4..f21f4c3 100644 --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim
@@ -62,6 +62,10 @@ endfunc func Test_help_arg() + if !has('unix') && has('gui') + " this doesn't work with gvim on MS-Windows + return + endif if RunVim([], [], '--help >Xtestout') let lines = readfile('Xtestout') call assert_true(len(lines) > 20)