# HG changeset patch # User Bram Moolenaar # Date 1664037902 -7200 # Node ID 57890fe84655f9522e5088a66b1aa7388c33b6a4 # Parent f322d75442f56961d94d14d5678d969b2e4eb858 patch 9.0.0578: one timer test fails on Mac M1 Commit: https://github.com/vim/vim/commit/865bf2ed3039deeaa66312319f3e13db146a9701 Author: Bram Moolenaar Date: Sat Sep 24 17:44:22 2022 +0100 patch 9.0.0578: one timer test fails on Mac M1 Problem: One timer test fails on Mac M1. Solution: Skip the test on Mac M1. diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -506,6 +506,9 @@ func Test_timer_outputting_message() endfunc func Test_timer_using_win_execute_undo_sync() + " FIXME: why does this fail only on MacOS M1? + CheckNotMacM1 + let bufnr1 = bufnr() new let g:bufnr2 = bufnr() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 578, +/**/ 577, /**/ 576,