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')\<CR>")
--- 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')\<CR>")
*** ../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 -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220927153248.636B91C0413%40moolenaar.net.