summaryrefslogtreecommitdiffstats
path: root/src/testdir/runtest.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-10-07 15:42:07 +0200
committerBram Moolenaar <Bram@vim.org>2018-10-07 15:42:07 +0200
commitd8f27b30d6ec0bcfcb8f44c6201e36c003d1ce88 (patch)
tree46aded7ced84e056d69f378133d8c50ee5f5491b /src/testdir/runtest.vim
parent019dfe6855e011c02427bb922aafeae0245372c9 (diff)
patch 8.1.0456: running test hangs when the input file is being editedv8.1.0456
Problem: Running test hangs when the input file is being edited. Solution: Use a SwapExists autocommand to ignore editing the test script.
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r--src/testdir/runtest.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index c3414914f8..ff32abcc32 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -57,6 +57,19 @@ else
set encoding=latin1
endif
+" REDIR_TEST_TO_NULL has a very permissive SwapExists autocommand which is for
+" the test_name.vim file itself. Replace it here with a more restrictive one,
+" so we still catch mistakes.
+let s:test_script_fname = expand('%')
+au! SwapExists * call HandleSwapExists()
+func HandleSwapExists()
+ " Only ignore finding a swap file for the test script (the user might be
+ " editing it and do ":make test_name") and the output file.
+ if expand('<afile>') == 'messages' || expand('<afile>') =~ s:test_script_fname
+ let v:swapchoice = 'e'
+ endif
+endfunc
+
" Avoid stopping at the "hit enter" prompt
set nomore
@@ -146,6 +159,7 @@ func RunTheTest(test)
" Clear any autocommands
au!
+ au SwapExists * call HandleSwapExists()
" Close any extra tab pages and windows and make the current one not modified.
while tabpagenr('$') > 1