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)
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index d651d0b..ae6d195 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -429,6 +429,10 @@
if !CanRunGui()
return
endif
+
+ " Ignore the "failed to create input context" error.
+ call test_ignore_error('E285:')
+
gui -f
call assert_equal(1, winnr('$'))
diff --git a/src/version.c b/src/version.c
index b9836b7..0ef2084 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1011,
+/**/
1010,
/**/
1009,