summaryrefslogtreecommitdiff
path: root/src/testdir/runtest.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-22 16:19:45 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-22 16:19:45 +0100
commit4c86830fc578bcb47a51cf0983da5388cdbfe6cc (patch)
tree8c2b04a8cfaf7e00f8a20e38a5e5d09a5043b951 /src/testdir/runtest.vim
parent09f8b3a02200a1900a8bb41d7436f9d17ebd2d1b (diff)
downloadvim-git-4c86830fc578bcb47a51cf0983da5388cdbfe6cc.tar.gz
patch 8.2.2638: cannot write a message to the terminal from the GUIv8.2.2638
Problem: Cannot write a message to the terminal from the GUI. Solution: Add :echoconsole and use it in the test runner. (issue #7975)
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r--src/testdir/runtest.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 4602051a7..e43dd8d94 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -162,7 +162,7 @@ function GetAllocId(name)
endfunc
func RunTheTest(test)
- echo 'Executing ' . a:test
+ echoconsole 'Executing ' . a:test
if has('reltime')
let func_start = reltime()
endif