]> granicus.if.org Git - vim/commitdiff
patch 8.0.0064 v8.0.0064
authorBram Moolenaar <Bram@vim.org>
Sat, 5 Nov 2016 18:54:01 +0000 (19:54 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 5 Nov 2016 18:54:01 +0000 (19:54 +0100)
Problem:    Normal test fails on MS-Windows.
Solution:   Don't try using an illegal file name.

src/testdir/test_normal.vim
src/version.c

index 20cbaa00f020cc0124a0f3d1d1ce0770782d0a99..4dafe3c105fc874b2627603221c7098fc0a4d9fe 100644 (file)
@@ -1248,10 +1248,12 @@ func! Test_normal23_K()
   norm! K
   call assert_equal('aa%bb', fnamemodify(bufname('%'), ':t'))
   bwipe!
-  4
-  norm! K
-  call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
-  bwipe!
+  if !has('win32')
+    4
+    norm! K
+    call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
+    bwipe!
+  endif
   set iskeyword-=%
   set iskeyword-=\|
 
index 492a5277e9d290356c9c575af746ecd03fb9ea02..1399c87517c4ce332434e05e0f6d4e623a46f463 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    64,
 /**/
     63,
 /**/