comparison src/testdir/test_terminal.vim @ 12263:eddd5ea01116 v8.0.1011

patch 8.0.1011: terminal test fails with Athena and Motif commit https://github.com/vim/vim/commit/97f65fafdbf3530fa42d6e43618e66e14c866b50 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 29 20:42:07 2017 +0200 patch 8.0.1011: terminal test fails with Athena and Motif Problem: Terminal test fails with Athena and Motif. Solution: Ignore the error for the input context. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Tue, 29 Aug 2017 20:45:04 +0200
parents 24abce52ad20
children e4aa68825575
comparison
equal deleted inserted replaced
12262:a522c4359d94 12263:eddd5ea01116
427 " must be last, we can't go back from GUI to terminal 427 " must be last, we can't go back from GUI to terminal
428 func Test_zz_terminal_in_gui() 428 func Test_zz_terminal_in_gui()
429 if !CanRunGui() 429 if !CanRunGui()
430 return 430 return
431 endif 431 endif
432
433 " Ignore the "failed to create input context" error.
434 call test_ignore_error('E285:')
435
432 gui -f 436 gui -f
433 437
434 call assert_equal(1, winnr('$')) 438 call assert_equal(1, winnr('$'))
435 let buf = Run_shell_in_terminal({'term_finish': 'close'}) 439 let buf = Run_shell_in_terminal({'term_finish': 'close'})
436 call Stop_shell_in_terminal(buf) 440 call Stop_shell_in_terminal(buf)