diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-03 23:07:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-03 23:07:25 +0200 |
commit | ddd3308782e931a2c390d692cb23c40d8169bd6f (patch) | |
tree | cb381bc3e141f8f494e40c6a454d9cff170a93c6 /src/testdir/test_terminal.vim | |
parent | 02e15072be08ef4ae03d673fc95ed6234e749e1c (diff) | |
download | vim-git-ddd3308782e931a2c390d692cb23c40d8169bd6f.tar.gz |
patch 8.1.1461: tests do not run or are not reliable on some systemsv8.1.1461
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 #4479)
Diffstat (limited to 'src/testdir/test_terminal.vim')
-rw-r--r-- | src/testdir/test_terminal.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index b97cdb310..9d6fddd01 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -8,6 +8,7 @@ source shared.vim source screendump.vim let s:python = PythonProg() +let $PROMPT_COMMAND='' " Open a terminal with a shell, assign the job to g:job and return the buffer " number. |