From: Bram Moolenaar Date: Sun, 9 Apr 2017 12:58:15 +0000 (+0200) Subject: patch 8.0.0555: toupper/tolower test fails on OSX without Darwin X-Git-Tag: v8.0.0555 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2381a2cadb9ef359ad5efb916734c635b29bd13;p=vim 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) --- diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim index 155ddbfb3..21d6aa988 100644 --- 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= diff --git a/src/version.c b/src/version.c index 578cfe3bf..7cf764443 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 555, /**/ 554, /**/