# HG changeset patch # User Christian Brabandt # Date 1469653207 -7200 # Node ID 27d3250c6dd4197aac0533e479f7133e864aa1a6 # Parent 6f7ef4df2318fe9f1865679b83073a8aa21e5472 commit https://github.com/vim/vim/commit/adfc5c2f9cf8032e496fcd4793d829768bd6d0a7 Author: Bram Moolenaar Date: Wed Jul 27 22:56:48 2016 +0200 patch 7.4.2108 Problem: Netbeans test is flaky. Solution: Wait for the cursor to be positioned. diff --git a/src/testdir/test_netbeans.vim b/src/testdir/test_netbeans.vim --- a/src/testdir/test_netbeans.vim +++ b/src/testdir/test_netbeans.vim @@ -27,6 +27,7 @@ func Nb_basic(port) " Opening Makefile will result in a setDot command call WaitFor('len(readfile("Xnetbeans")) > 4') + call WaitFor('getcurpos()[1] == 2') let pos = getcurpos() call assert_equal(2, pos[1]) call assert_equal(20, pos[2]) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2108, +/**/ 2107, /**/ 2106,