1
0
forked from aniani/vim

patch 9.0.0436: CI: running tests in parallel causes flakiness

Problem:    CI: running tests in parallel causes flakiness.
Solution:   Reorganize the MS-Windows runs. (Ken Takata, closes #11101)
This commit is contained in:
K.Takata
2022-09-10 13:03:12 +01:00
committed by Bram Moolenaar
parent f21d546d8f
commit 2da11a4124
5 changed files with 101 additions and 107 deletions

View File

@@ -2011,11 +2011,11 @@ EXTERN char e_cannot_delete_variable[]
INIT(= N_("E795: Cannot delete variable"));
EXTERN char e_cannot_delete_variable_str[]
INIT(= N_("E795: Cannot delete variable %s"));
#endif
#ifdef MSWIN
// E796
# ifdef MSWIN
EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
INIT(= N_("writing to device disabled with 'opendevice' option"));
# endif
#endif
#ifdef FEAT_SPELL
EXTERN char e_spellfilemising_autocommand_deleted_buffer[]

View File

@@ -198,9 +198,7 @@ gui_mch_set_rendering_options(char_u *s)
# ifndef __MINGW32__
# include <shellapi.h>
# endif
# if defined(FEAT_TOOLBAR) || defined(FEAT_BEVAL_GUI) || defined(FEAT_GUI_TABLINE)
# include <commctrl.h>
# endif
# include <commctrl.h>
# include <windowsx.h>
#endif // PROTO

View File

@@ -2834,7 +2834,11 @@ SaveConsoleTitleAndIcon(void)
return;
// Extract the first icon contained in the Vim executable.
if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
if (
# ifdef FEAT_LIBCALL
mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL ||
# endif
g_hVimIcon == NULL)
g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
if (g_hVimIcon != NULL)
g_fCanChangeIcon = TRUE;

View File

@@ -703,6 +703,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
436,
/**/
435,
/**/