summaryrefslogtreecommitdiffstats
path: root/src/testdir/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-13 19:42:39 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-13 19:42:39 +0200
commitc771908681bc9ee7689d83e09104cf4c6f984326 (patch)
tree25dc7305562ee0077ad90e83aa978f68cf42b03f /src/testdir/Makefile
parent16c6232cad40af37f37dc9c561392b7761b9e229 (diff)
patch 8.2.1441: running tests in tiny version gives error for summarize.vimv8.2.1441
Problem: Running tests in tiny version gives error for summarize.vim. Solution: Set 'cpoptions' to allow for line continuation. Restore redirecting test output to /dev/null.
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r--src/testdir/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index 42eb7f5569..7033d1e46e 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -12,7 +12,7 @@ SCRIPTSOURCE = ../../runtime
# Comment out this line to see the verbose output of tests.
#
# Catches SwapExists to avoid hanging at the ATTENTION prompt.
-#REDIR_TEST_TO_NULL = --cmd 'au SwapExists * let v:swapchoice = "e"' > /dev/null
+REDIR_TEST_TO_NULL = --cmd 'au SwapExists * let v:swapchoice = "e"' > /dev/null
# Uncomment this line to use valgrind for memory leaks and extra warnings.
# The output goes into a file "valgrind.testN"