forked from aniani/vim
patch 8.0.0939: Test_terminal_env is flaky
Problem: Test_terminal_env is flaky. (James McCoy) Solution: Use WaitFor() instead of term_wait().
This commit is contained in:
@@ -410,11 +410,12 @@ func Test_terminal_env()
|
|||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
let buf = Run_shell_in_terminal({'env': {'TESTENV': 'correct'}})
|
let buf = Run_shell_in_terminal({'env': {'TESTENV': 'correct'}})
|
||||||
call term_wait(buf)
|
" Wait for the shell to display a prompt
|
||||||
|
call WaitFor('term_getline(1) != ""')
|
||||||
call term_sendkeys(buf, "echo $TESTENV\r")
|
call term_sendkeys(buf, "echo $TESTENV\r")
|
||||||
call term_wait(buf)
|
call term_wait(buf)
|
||||||
call Stop_shell_in_terminal(buf)
|
call Stop_shell_in_terminal(buf)
|
||||||
call term_wait(buf)
|
call WaitFor('getline(2) == "correct"')
|
||||||
call assert_equal('correct', getline(2))
|
call assert_equal('correct', getline(2))
|
||||||
|
|
||||||
exe buf . 'bwipe'
|
exe buf . 'bwipe'
|
||||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
939,
|
||||||
/**/
|
/**/
|
||||||
938,
|
938,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user