changeset 11339:2c655db9e0f6 v8.0.0555

patch 8.0.0555: toupper/tolower test fails on OSX without Darwin commit https://github.com/vim/vim/commit/d2381a2cadb9ef359ad5efb916734c635b29bd13 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 9 14:58:15 2017 +0200 patch 8.0.0555: toupper/tolower test fails on OSX without Darwin Problem: Toupper/tolower test fails on OSX without Darwin. Solution: Skip that part of the test also for OSX. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Sun, 09 Apr 2017 15:00:03 +0200
parents 55c85b4497cc
children 91a2bb32dfda
files src/testdir/test_normal.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_normal.vim
+++ b/src/testdir/test_normal.vim
@@ -1605,7 +1605,7 @@ fun! Test_normal30_changecase()
 
   " Turkish ASCII turns to multi-byte.  On Mac the Turkish locale is available
   " but toupper()/tolower() don't do the right thing.
-  if !has('mac')
+  if !has('mac') && !has('osx')
     try
       lang tr_TR.UTF-8
       set casemap=
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    555,
+/**/
     554,
 /**/
     553,