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)