Skip to content

Commit d2381a2

Browse files
committed
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)
1 parent 1cc4820 commit d2381a2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/testdir/test_normal.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ fun! Test_normal30_changecase()
16051605

16061606
" Turkish ASCII turns to multi-byte. On Mac the Turkish locale is available
16071607
" but toupper()/tolower() don't do the right thing.
1608-
if !has('mac')
1608+
if !has('mac') && !has('osx')
16091609
try
16101610
lang tr_TR.UTF-8
16111611
set casemap=

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
555,
767769
/**/
768770
554,
769771
/**/

0 commit comments

Comments
 (0)