From d2381a2cadb9ef359ad5efb916734c635b29bd13 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 9 Apr 2017 14:58:15 +0200 Subject: [PATCH] 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) --- src/testdir/test_normal.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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, /**/ -- 2.50.1