diff src/testdir/runtest.vim @ 9748:5440f3442841 v7.4.2149

commit https://github.com/vim/vim/commit/7cba71d7e3576639679b6a3aedeeb1ac07f7f2f5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 2 23:04:49 2016 +0200 patch 7.4.2149 Problem: If a test leaves a window open a following test may fail. Solution: Always close extra windows after running a test.
author Christian Brabandt <cb@256bit.org>
date Tue, 02 Aug 2016 23:15:07 +0200
parents 3e0ab13ddd12
children 5534cfa2ec87
line wrap: on
line diff
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -103,6 +103,12 @@ function RunTheTest(test)
   if exists("*TearDown")
     call TearDown()
   endif
+
+  " Close any extra windows and make the current one not modified.
+  while winnr('$') > 1
+    bwipe!
+  endwhile
+  set nomodified
 endfunc
 
 " Source the test script.  First grab the file name, in case the script