blob: 2e5e77771d0417e428ecb76e0b3e82ca6a5ffe11 [file] [log] [blame]
Bram Moolenaar8be2fbb2017-02-23 19:32:47 +01001" Common preparations for running GUI tests.
2
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003let g:x11_based_gui = has('gui_motif')
Bram Moolenaar8be2fbb2017-02-23 19:32:47 +01004 \ || 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: "
Bram Moolenaar8be2fbb2017-02-23 19:32:47 +01008let g:not_hosted = "Skipped: Test not hosted by the system/environment"
9
10" For KDE set a font, empty 'guifont' may cause a hang.
11func GUISetUpCommon()
12 if has("gui_kde")
13 set guifont=Courier\ 10\ Pitch/8/-1/5/50/0/0/0/0/0
14 endif
15
16 " Gnome insists on creating $HOME/.gnome2/, set $HOME to avoid changing the
17 " actual home directory. But avoid triggering fontconfig by setting the
18 " cache directory. Only needed for Unix.
19 if $XDG_CACHE_HOME == '' && exists('g:tester_HOME')
20 let $XDG_CACHE_HOME = g:tester_HOME . '/.cache'
21 endif
22 call mkdir('Xhome')
23 let $HOME = fnamemodify('Xhome', ':p')
24endfunc
25
26func GUITearDownCommon()
27 call delete('Xhome', 'rf')
28endfunc
Bram Moolenaarf8ab1b12017-03-01 18:30:34 +010029
30" Ignore the "failed to create input context" error.
31call test_ignore_error('E285')