]> granicus.if.org Git - vim/commitdiff
patch 8.1.1173: suspend test has duplicated lines v8.1.1173
authorBram Moolenaar <Bram@vim.org>
Sun, 14 Apr 2019 12:31:11 +0000 (14:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 14 Apr 2019 12:31:11 +0000 (14:31 +0200)
Problem:    Suspend test has duplicated lines.
Solution:   Use a function.

src/testdir/test_suspend.vim
src/version.c

index e569e49055b9aeb259cdac51ee9f0ed12c082ff8..efda68de9b664e28b589b8e1cf48ab38db989b66 100644 (file)
@@ -2,6 +2,20 @@
 
 source shared.vim
 
+func CheckSuspended(buf, fileExists)
+  call WaitForAssert({-> assert_match('[$#] $', term_getline(a:buf, '.'))})
+
+  if a:fileExists
+    call assert_equal(['foo'], readfile('Xfoo'))
+  else
+    " Without 'autowrite', buffer should not be written.
+    call assert_equal(0, filereadable('Xfoo'))
+  endif
+
+  call term_sendkeys(a:buf, "fg\<CR>\<C-L>")
+  call WaitForAssert({-> assert_equal('  1 foo', term_getline(a:buf, '.'))})
+endfunc
+
 func Test_suspend()
   if !has('terminal') || !executable('/bin/sh')
     return
@@ -26,13 +40,7 @@ func Test_suspend()
         \             "\<C-Z>"]
     " Suspend and wait for shell prompt.
     call term_sendkeys(buf, suspend_cmd)
-    call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
-
-    " Without 'autowrite', buffer should not be written.
-    call assert_equal(0, filereadable('Xfoo'))
-
-    call term_sendkeys(buf, "fg\<CR>")
-    call WaitForAssert({-> assert_equal('  1 foo', term_getline(buf, '.'))})
+    call CheckSuspended(buf, 0)
   endfor
 
   " Test that :suspend! with 'autowrite' writes content of buffers if modified.
@@ -40,10 +48,7 @@ func Test_suspend()
   call assert_equal(0, filereadable('Xfoo'))
   call term_sendkeys(buf, ":suspend\<CR>")
   " Wait for shell prompt.
-  call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
-  call assert_equal(['foo'], readfile('Xfoo'))
-  call term_sendkeys(buf, "fg\<CR>")
-  call WaitForAssert({-> assert_equal('  1 foo', term_getline(buf, '.'))})
+  call CheckSuspended(buf, 1)
 
   " Quit gracefully to dump coverage information.
   call term_sendkeys(buf, ":qall!\<CR>")
index aacbf133531b0b5d03837f0f3222328301872afa..bc12aae17cdb6b884f84e4e5cd961d83135cddf4 100644 (file)
@@ -771,6 +771,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1173,
 /**/
     1172,
 /**/