To: vim_dev@googlegroups.com Subject: Patch 9.0.0607 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0607 Problem: Verbose echo message test fails on Mac OS. Solution: Skip the test on Mac OS. Files: src/testdir/test_messages.vim, src/testdir/check.vim *** ../vim-9.0.0606/src/testdir/test_messages.vim 2022-09-26 19:50:07.463112932 +0100 --- src/testdir/test_messages.vim 2022-09-27 15:54:07.497145573 +0100 *************** *** 339,345 **** " Test verbose message before echo command func Test_echo_verbose_system() CheckRunVimInTerminal ! CheckUnix let buf = RunVimInTerminal('', {'rows': 10}) call term_sendkeys(buf, ":4 verbose echo system('seq 20')\") --- 339,346 ---- " Test verbose message before echo command func Test_echo_verbose_system() CheckRunVimInTerminal ! CheckUnix " needs the "seq" command ! CheckNotMac " doesn't use /tmp let buf = RunVimInTerminal('', {'rows': 10}) call term_sendkeys(buf, ":4 verbose echo system('seq 20')\") *** ../vim-9.0.0606/src/testdir/check.vim 2022-09-23 21:26:36.289344156 +0100 --- src/testdir/check.vim 2022-09-27 15:52:59.857396240 +0100 *************** *** 111,116 **** --- 111,124 ---- endif endfunc + " Command to check for not running on a MacOS + command CheckNotMac call CheckNotMac() + func CheckNotMac() + if has('mac') + throw 'Skipped: does not work on MacOS' + endif + endfunc + " Command to check for not running on a MacOS M1 system. command CheckNotMacM1 call CheckNotMacM1() func CheckNotMacM1() *** ../vim-9.0.0606/src/version.c 2022-09-27 15:48:17.518491735 +0100 --- src/version.c 2022-09-27 15:53:44.473230469 +0100 *************** *** 701,702 **** --- 701,704 ---- { /* Add new patch number below this line */ + /**/ + 607, /**/ -- Some of the well known MS-Windows errors: EMULTI Multitasking attempted, system confused EKEYBOARD Keyboard locked, try getting out of this one! EXPLAIN Unexplained error, please tell us what happened EFUTURE Reserved for our future mistakes /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///