summaryrefslogtreecommitdiffstats
path: root/src/testdir/setup_gui.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-23 19:32:47 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-23 19:32:47 +0100
commit8be2fbb6705dfb41d06d688701803d206c968404 (patch)
tree7b603e040afbf40bc7d13a87c2f433af2c49bc37 /src/testdir/setup_gui.vim
parentb544f3c81f1e6a50322855681ac266ffaa8e313c (diff)
patch 8.0.0361: GUI initialisation is not sufficiently testedv8.0.0361
Problem: GUI initialisation is not sufficiently tested. Solution: Add the gui_init test. (Kazuki Kuriyama)
Diffstat (limited to 'src/testdir/setup_gui.vim')
-rw-r--r--src/testdir/setup_gui.vim29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/testdir/setup_gui.vim b/src/testdir/setup_gui.vim
new file mode 100644
index 0000000000..88f538e0d7
--- /dev/null
+++ b/src/testdir/setup_gui.vim
@@ -0,0 +1,29 @@
+" 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_implemented = "Skipped: Test not implemented yet for 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