* Bram Moolenaar <[email protected]> [2015-12-31 20:46 +0100]: > > Patch 7.4.1010 > Problem: Some developers are unhappy while running tests. > Solution: Add a test and some color. > Files: src/ex_cmds.c, src/testdir/test_assert.vim > > > *** ../vim-7.4.1009/src/ex_cmds.c 2015-12-31 19:53:16.262087808 +0100 > --- src/ex_cmds.c 2015-12-31 20:46:08.319780416 +0100 > *************** > *** 7767,7773 **** > msg_putchar('\n'); > else > for (n = *p++; n > 0; --n) > ! msg_putchar(*p); > msg_clr_eos(); > } > > --- 7767,7776 ---- > msg_putchar('\n'); > else > for (n = *p++; n > 0; --n) > ! if (*p == 'o' || *p == '$') > ! msg_putchar_attr(*p, hl_attr(HLF_L)); > ! else > ! msg_putchar(*p); > msg_clr_eos(); > } > > *** ../vim-7.4.1009/src/testdir/test_assert.vim 2015-11-30 > 21:37:23.596219585 +0100 > --- src/testdir/test_assert.vim 2015-12-31 19:33:00.391205719 +0100 > *************** > *** 17,19 **** > --- 17,24 ---- > let l = [1, 2, 3] > call assert_equal([1, 2, 3], l) > endfunc > + > + func Test_user_is_happy() > + smile > + sleep 300m > + endfunc > *** ../vim-7.4.1009/src/version.c 2015-12-31 19:53:16.266087765 +0100 > --- src/version.c 2015-12-31 20:41:50.894569561 +0100 > *************** > *** 743,744 **** > --- 743,746 ---- > { /* Add new patch number below this line */ > + /**/ > + 1010, > /**/
BTW, 300ms are quite to fast to kiss it :-) Elimar -- Learned men are the cisterns of knowledge, not the fountainheads ;-) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
