On Mo, 19 Jan 2015, Christian Brabandt wrote:
> Am 2015-01-19 17:00, schrieb Florian Walch:
> >Seems to be a different error: "test_command_count FAILED". I could
> >now add a second patch file to the PR, force-push to the branch
> >(triggering a new build) and check again if that fixes it.
>
> That is a different error. Looks like test_command_count.in needs a
> :so small.vim
> instead of :so tiny.vim
Okay, this patch fixes both problems
Best,
Christian
--
Strahlt der Mond ganz voll und hell, wächst dem Knecht ein Werwolffell.
--
--
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.
# HG changeset patch
# Parent b731e33ab4fd81a879827a85232e021f6b5622b5
diff --git a/src/testdir/test16.in b/src/testdir/test16.in
--- a/src/testdir/test16.in
+++ b/src/testdir/test16.in
@@ -2,6 +2,7 @@ Tests for resetting "secure" flag after
For KDE set a font, empty 'guifont' may cause a hang.
STARTTEST
+:so small.vim
:if $DISPLAY == "" | e! test.ok | wq! test.out | endif
:set exrc secure
:if has("gui_kde")
diff --git a/src/testdir/test_command_count.in
b/src/testdir/test_command_count.in
--- a/src/testdir/test_command_count.in
+++ b/src/testdir/test_command_count.in
@@ -1,7 +1,7 @@
Test for user command counts vim: set ft=vim :
STARTTEST
-:so tiny.vim
+:so small.vim
:let g:lines = []
:com -range=% RangeLines :call add(g:lines, 'RangeLines '.<line1>.' '.<line2>)
:com -range -addr=arguments RangeArguments :call add(g:lines, 'RangeArguments
'.<line1>.' '.<line2>)