commit | 18dc355395f2eac72ab83d984cacd26ae61c791f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Nov 22 14:24:00 2020 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Nov 22 14:24:00 2020 +0100 |
tree | 6c1e7d7f7bae004eb34e0cf4251ccb5419bb10d7 | |
parent | 4b2ce1297e6e991bf6a674f9465d26d28e648de7 [diff] [blame] |
patch 8.2.2031: some tests fail when run under valgrind Problem: Some tests fail when run under valgrind. Solution: Avoid timing problems.
diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim index 7b5d3e9..dd2f576 100644 --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim
@@ -37,7 +37,7 @@ for i in range(1, 9) text ..= term_getline(buf, i) endfor - if text =~ 'Error detected' + if text =~ 'Variable not found: nothing' break endif sleep 20m