xref: /vim-8.2.3635/src/testdir/setup_gui.vim (revision cd5c8f82)
1" Common preparations for running GUI tests.
2
3let g:x11_based_gui = has('gui_athena') || has('gui_motif')
4	\ || has('gui_gtk2') || has('gui_gnome') || has('gui_gtk3')
5
6" Reasons for 'skipped'.
7let g:not_supported   = "Skipped: Feature/Option not supported by this GUI: "
8let g:not_implemented = "Skipped: Test not implemented yet for this GUI"
9let g:not_hosted      = "Skipped: Test not hosted by the system/environment"
10
11" For KDE set a font, empty 'guifont' may cause a hang.
12func GUISetUpCommon()
13  if has("gui_kde")
14    set guifont=Courier\ 10\ Pitch/8/-1/5/50/0/0/0/0/0
15  endif
16
17  " Gnome insists on creating $HOME/.gnome2/, set $HOME to avoid changing the
18  " actual home directory.  But avoid triggering fontconfig by setting the
19  " cache directory.  Only needed for Unix.
20  if $XDG_CACHE_HOME == '' && exists('g:tester_HOME')
21    let $XDG_CACHE_HOME = g:tester_HOME . '/.cache'
22  endif
23  call mkdir('Xhome')
24  let $HOME = fnamemodify('Xhome', ':p')
25endfunc
26
27func GUITearDownCommon()
28  call delete('Xhome', 'rf')
29endfunc
30
31" Ignore the "failed to create input context" error.
32call test_ignore_error('E285')
33