Patch 8.2.2359
Problem: Strange test failure with MS-Windows.
Solution: Skip the system() call for now.
Files: src/testdir/test_autocmd.vim
*** ../vim-8.2.2358/src/testdir/test_autocmd.vim 2021-01-15
16:45:18.140326666 +0100
--- src/testdir/test_autocmd.vim 2021-01-16 13:11:24.230772601 +0100
***************
*** 503,508 ****
--- 503,516 ----
" Using :blast and :ball for many events caused a crash, because b_nwindows
was
" not incremented correctly.
func Test_autocmd_blast_badd()
+ " The system() here causes SetChangeMarks() to fail, when run in the GUI
+ " under Windows. No idea why. Happens with any external command, not
+ " related to the actual test.
+ " TODO: find the cause
+ if has('win32')
+ throw 'Skipped: calling system() causes problems'
+ endif
+
let content =<< trim [CODE]
au
BufNew,BufAdd,BufWinEnter,BufEnter,BufLeave,BufWinLeave,BufUnload,VimEnter foo*
blast
edit foo1
*** ../vim-8.2.2358/src/version.c 2021-01-16 11:21:37.387048645 +0100
--- src/version.c 2021-01-16 13:05:59.031626480 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2359,
/**/
--
hundred-and-one symptoms of being an internet addict:
161. You get up before the sun rises to check your e-mail, and you
find yourself in the very same chair long after the sun has set.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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/202101161212.10GCC9cI254099%40masaka.moolenaar.net.