]> granicus.if.org Git - vim/commitdiff
patch 8.0.1653: screen dump is made too soon v8.0.1653
authorBram Moolenaar <Bram@vim.org>
Thu, 29 Mar 2018 15:40:46 +0000 (17:40 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 29 Mar 2018 15:40:46 +0000 (17:40 +0200)
Problem:    Screen dump is made too soon.
Solution:   Wait until the ruler is displayed. (Ozaki Kiichi, closes #2755)

src/testdir/dumps/Test_popup_command_01.dump
src/testdir/dumps/Test_popup_command_02.dump
src/testdir/screendump.vim
src/testdir/test_autocmd.vim
src/testdir/test_terminal.vim
src/version.c

index 2657f0297c9bb46873eb7f8c3b4d4e1575b2b4b2..8d0cd9cf57c02070291bbd24e759de0bcdfe260f 100644 (file)
@@ -1,5 +1,5 @@
 |o+0&#ffffff0|n|e| |t|w|o| |t|h|r|e@1| |f|o|u|r| |f|i|v|e| @51
-|a|n|d| |o|n|e| |t|w|o| |X|t|h|r|e@1| |f|o|u|r| |f|i|v|e| @46
+|a|n|d| |o|n|e| |t|w|o| >X|t|h|r|e@1| |f|o|u|r| |f|i|v|e| @46
 |o|n|e| |m|o|r|e| |t|w| +0#0000001#ffd7ff255|U|n|d|o| @12| +0#0000000#ffffff0@45
 |~+0#4040ff13&| @9| +0#0000001#ffd7ff255@17| +0#4040ff13#ffffff0@45
 |~| @9| +0#0000001#ffd7ff255|P|a|s|t|e| @11| +0#4040ff13#ffffff0@45
@@ -17,4 +17,4 @@
 |~| @73
 |~| @73
 |~| @73
-|:+0#0000000&|p|o|p|u|p| |P|o|p|U|p| @34|:| @8> @17
+|:+0#0000000&|p|o|p|u|p| |P|o|p|U|p| @62
index 87ec419468294760ff3922d18ea151f5a32ff11e..e33ea4df51b0f04ea54df8bfd532626ef1cdca76 100644 (file)
@@ -17,4 +17,4 @@
 |~| @73
 |~| @73
 |~| @73
-|:+0#0000000&|p|o|p|u|p| |P|o|p|U|p| @34|:| @8| @17
+|:+0#0000000&|p|o|p|u|p| |P|o|p|U|p| @62
index 87a5823cc214eb116e08856a41f346104833ecc8..d4fae0742512f13328e22bd96950409492972133 100644 (file)
@@ -59,6 +59,9 @@ func RunVimInTerminal(arguments, options)
   let buf = term_start(cmd, {'curwin': 1, 'term_rows': rows, 'term_cols': cols})
   call assert_equal([rows, cols], term_getsize(buf))
 
+  " Wait for the ruler (in the status line) to be shown.
+  call WaitFor({-> len(term_getline(buf, rows)) >= cols - 1})
+
   return buf
 endfunc
 
index af7aaff74d81d8e4bb8fb16ee6531d96acdb3bb4..61adcae33fd265f96ea12661fe90fcef74bf26ec 100644 (file)
@@ -1315,6 +1315,8 @@ func Test_Changed_FirstTime()
   call writefile([''], 'Xchanged.txt')
   let buf = term_start([GetVimProg(), '--clean', '-c', 'set noswapfile'], {'term_rows': 3})
   call assert_equal('running', term_getstatus(buf))
+  " Wait for the ruler (in the status line) to be shown.
+  call WaitFor({-> term_getline(buf, 3) =~# '\<All$'})
   " It's only adding autocmd, so that no event occurs.
   call term_sendkeys(buf, ":au! TextChanged <buffer> call writefile(['No'], 'Xchanged.txt')\<cr>")
   call term_sendkeys(buf, "\<C-\\>\<C-N>:qa!\<cr>")
index d0ef3250e0f3a31d4c33793fecf77490af835ad6..eac54c1d68ef5158abf1ad7c0c64b552b891a64c 100644 (file)
@@ -975,7 +975,7 @@ endfunction
 func Check_dump01(off)
   call assert_equal('one two three four five', trim(getline(a:off + 1)))
   call assert_equal('~           Select Word', trim(getline(a:off + 7)))
-  call assert_equal(':popup PopUp                                   :', trim(getline(a:off + 20)))
+  call assert_equal(':popup PopUp', trim(getline(a:off + 20)))
 endfunc
 
 func Test_terminal_dumpwrite_composing()
index b709f71aa0f62d6c4ee52f7ae899f4ceb940b0f8..791549c3a5637caeee9b5b50502a7bf5f3c57195 100644 (file)
@@ -762,6 +762,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1653,
 /**/
     1652,
 /**/