From: Bram Moolenaar Date: Sat, 4 May 2019 17:26:56 +0000 (+0200) Subject: patch 8.1.1268: map completion test fails in GUI X-Git-Tag: v8.1.1268 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=510671a055c2d7a329c88bf133ac302139fd3221;p=vim patch 8.1.1268: map completion test fails in GUI Problem: Map completion test fails in GUI. Solution: Skip the test that fails. --- diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 91a4b4e84..3b275b617 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -111,8 +111,10 @@ func Test_map_completion() call feedkeys(":map \[17~x f6x\", 'xt') call feedkeys(":map \\"\", 'xt') call assert_equal('"map ', getreg(':')) - call feedkeys(":map \[17~\\\"\", 'xt') - call assert_equal("\"map x", getreg(':')) + if !has('gui_running') + call feedkeys(":map \[17~\\\"\", 'xt') + call assert_equal("\"map x", getreg(':')) + endif unmap call feedkeys(":unmap \[17~x\", 'xt') set cpo-=< diff --git a/src/version.c b/src/version.c index 687767360..98c557363 100644 --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1268, /**/ 1267, /**/