From 3020ccb113d397ddf474001dc00a1916ad7abdee Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 17 Jan 2019 22:13:54 +0100 Subject: patch 8.1.0769: :stop is covered in two tests Problem: :stop is covered in two tests. Solution: Remove Test_stop_in_terminal(). Make other test exit Vim cleanly. (Ozaki Kiichi, closes #3814) --- src/testdir/test_suspend.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/testdir/test_suspend.vim') diff --git a/src/testdir/test_suspend.vim b/src/testdir/test_suspend.vim index a9964b040..e569e4905 100644 --- a/src/testdir/test_suspend.vim +++ b/src/testdir/test_suspend.vim @@ -45,7 +45,11 @@ func Test_suspend() call term_sendkeys(buf, "fg\") call WaitForAssert({-> assert_equal(' 1 foo', term_getline(buf, '.'))}) + " Quit gracefully to dump coverage information. + call term_sendkeys(buf, ":qall!\") + call term_wait(buf) + call Stop_shell_in_terminal(buf) + exe buf . 'bwipe!' call delete('Xfoo') - set autowrite& endfunc -- cgit v1.2.1