From: Bram Moolenaar Date: Sat, 24 Sep 2022 13:49:07 +0000 (+0100) Subject: patch 9.0.0574: timer garbage collect test hangs on Mac M1 X-Git-Tag: v9.0.0574 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=140f6d0eda7921f2f0b057ec38ed501240903fc3;p=thirdparty%2Fvim.git patch 9.0.0574: timer garbage collect test hangs on Mac M1 Problem: Timer garbage collect test hangs on Mac M1. Solution: Properly check for Mac M1 and skip the test. --- diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim index 98df6ff937..f97808c157 100644 --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -381,7 +381,12 @@ endfunc " vgetc(). func Test_nocatch_timer_garbage_collect() " FIXME: why does this fail only on MacOS M1? - CheckNotMacM1 + try + CheckNotMacM1 + catch /Skipped/ + let g:skipped_reason = v:exception + return + endtry " 'uptimetime. must be bigger than the timer timeout set ut=200 diff --git a/src/version.c b/src/version.c index 4428687122..5057877b99 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 574, /**/ 573, /**/