view src/testdir/setup_gui.vim @ 11012:ae2de10e8398 v8.0.0395

patch 8.0.0395: testing the + register fails with Motif commit https://github.com/vim/vim/commit/f8ab1b14fd972a093e0c12146dd3becd511eb519 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 1 18:30:34 2017 +0100 patch 8.0.0395: testing the + register fails with Motif Problem: Testing the + register fails with Motif. Solution: Also ignore the "failed to create input context" error in the second gvim. Don't use msg() when it would result in a dialog.
author Christian Brabandt <cb@256bit.org>
date Wed, 01 Mar 2017 18:45:04 +0100
parents 4e2cdce4576c
children 34b75c77a7bd
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_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

" Ignore the "failed to create input context" error.
call test_ignore_error('E285')