summaryrefslogtreecommitdiffstats
path: root/src/testdir/runtest.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-06 14:21:09 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-06 14:21:09 +0000
commit6572a90287c7aa6e8042b18604891e9df3657245 (patch)
tree14b41a4662aacb8afb4853844c3c1f3e49918be5 /src/testdir/runtest.vim
parent56a40fea9c28f8fc918a0db6de4c048da241cf32 (diff)
patch 9.0.1020: tests call GetSwapFileList() before it is definedv9.0.1020
Problem: Tests call GetSwapFileList() before it is defined. Solution: Move the call to after defining the function. (Christopher Plewright)
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r--src/testdir/runtest.vim14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 93acf99587..ccd22e89fa 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -161,13 +161,6 @@ if has('mac')
endif
-" A previous (failed) test run may have left swap files behind. Delete them
-" before running tests again, they might interfere.
-for name in s:GetSwapFileList()
- call delete(name)
-endfor
-
-
" Prepare for calling test_garbagecollect_now().
let v:testing = 1
@@ -210,6 +203,13 @@ func s:GetSwapFileList()
return files
endfunc
+" A previous (failed) test run may have left swap files behind. Delete them
+" before running tests again, they might interfere.
+for name in s:GetSwapFileList()
+ call delete(name)
+endfor
+
+
" Invoked when a test takes too much time.
func TestTimeout(id)
split test.log