comparison src/testdir/runtest.vim @ 21379:20dad734a2cb v8.2.1240

patch 8.2.1240: GUI tests sometimes fail because of translations Commit: https://github.com/vim/vim/commit/10e1d01aaf5504675fd9197c75d1da0de0e5b429 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 18 22:03:11 2020 +0200 patch 8.2.1240: GUI tests sometimes fail because of translations Problem: GUI tests sometimes fail because of translations. Solution: Reload the menus without translation. (Taro Muraoka, closes https://github.com/vim/vim/issues/6486)
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Jul 2020 22:15:05 +0200
parents ffa6b82fa993
children ad7ffbd3f02f
comparison
equal deleted inserted replaced
21378:4c41ccdedd6b 21379:20dad734a2cb
102 " Avoid stopping at the "hit enter" prompt 102 " Avoid stopping at the "hit enter" prompt
103 set nomore 103 set nomore
104 104
105 " Output all messages in English. 105 " Output all messages in English.
106 lang mess C 106 lang mess C
107
108 " suppress menu translation
109 if has('gui_running') && exists('did_install_default_menus')
110 source $VIMRUNTIME/delmenu.vim
111 set langmenu=none
112 source $VIMRUNTIME/menu.vim
113 endif
107 114
108 " Always use forward slashes. 115 " Always use forward slashes.
109 set shellslash 116 set shellslash
110 117
111 let s:srcdir = expand('%:p:h:h') 118 let s:srcdir = expand('%:p:h:h')