aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_source.vim
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-08-11 13:18:29 +0200
committerDaniel Hahler <git@thequod.de>2019-08-11 13:23:30 +0200
commit143b02c573ffafbc04301ee539150ec0c936a3e9 (patch)
tree6751b9017116c78f01d51ff702000fd58fc982a5 /src/nvim/testdir/test_source.vim
parent0a98765b44927e689af20a8d2484bec2ac17900d (diff)
downloadrneovim-143b02c573ffafbc04301ee539150ec0c936a3e9.tar.gz
rneovim-143b02c573ffafbc04301ee539150ec0c936a3e9.tar.bz2
rneovim-143b02c573ffafbc04301ee539150ec0c936a3e9.zip
vim-patch:8.1.1461: tests do not run or are not reliable on some systems
Problem: Tests do not run or are not reliable on some systems. Solution: Use "findstr" instead of "grep" on MS-Windows. Clear PROMPT_COMMAND in the terminal test. Delete temp file. Wait for output after executing a debug command. (Yegappan Lakshmanan, closes vim/vim#4479) https://github.com/vim/vim/commit/ddd3308782e931a2c390d692cb23c40d8169bd6f Ignored changes to testdir/test_terminal.vim.
Diffstat (limited to 'src/nvim/testdir/test_source.vim')
-rw-r--r--src/nvim/testdir/test_source.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_source.vim b/src/nvim/testdir/test_source.vim
index 5166bafb15..09baec0b7d 100644
--- a/src/nvim/testdir/test_source.vim
+++ b/src/nvim/testdir/test_source.vim
@@ -44,4 +44,5 @@ func Test_source_sandbox()
call assert_equal('hello', getline(1))
call assert_fails('sandbox source! Xsourcehello', 'E48:')
bwipe!
+ call delete('Xsourcehello')
endfunc