Mercurial > vim
view src/testdir/setup_gui.vim @ 27012:f9a9ffebe2c0 v8.2.4035
patch 8.2.4035: timer triggered at the debug prompt may cause trouble
Commit: https://github.com/vim/vim/commit/48d0ac775cb2da3b5aa9d46711ff17c50ce0f707
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 7 20:40:08 2022 +0000
patch 8.2.4035: timer triggered at the debug prompt may cause trouble
Problem: Timer triggered at the debug prompt may cause trouble.
Solution: Do not trigger any timer at the debug prompt. (closes https://github.com/vim/vim/issues/9481)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 07 Jan 2022 21:45:03 +0100 |
parents | 34b75c77a7bd |
children | 9849df834f1d |
line wrap: on
line source
" Common preparations for running GUI tests. let g:x11_based_gui = has('gui_athena') || has('gui_motif') \ || has('gui_gtk2') || has('gui_gnome') || has('gui_gtk3') " Reasons for 'skipped'. let g:not_supported = "Skipped: Feature/Option not supported by this GUI: " let g:not_hosted = "Skipped: Test not hosted by the system/environment" " For KDE set a font, empty 'guifont' may cause a hang. func GUISetUpCommon() if has("gui_kde") set guifont=Courier\ 10\ Pitch/8/-1/5/50/0/0/0/0/0 endif " Gnome insists on creating $HOME/.gnome2/, set $HOME to avoid changing the " actual home directory. But avoid triggering fontconfig by setting the " cache directory. Only needed for Unix. if $XDG_CACHE_HOME == '' && exists('g:tester_HOME') let $XDG_CACHE_HOME = g:tester_HOME . '/.cache' endif call mkdir('Xhome') let $HOME = fnamemodify('Xhome', ':p') endfunc func GUITearDownCommon() call delete('Xhome', 'rf') endfunc " Ignore the "failed to create input context" error. call test_ignore_error('E285')