Skip to content

Commit b31cb04

Browse files
committed
patch 8.2.5104: test hangs on MS-Windows
Problem: Test hangs on MS-Windows. Solution: Skip another test on MS-Windows.
1 parent 34f9958 commit b31cb04

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

src/testdir/test_retab.vim

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
" Test :retab
22

3+
source check.vim
4+
35
func SetUp()
46
new
57
call setline(1, "\ta \t b c ")
@@ -90,6 +92,9 @@ func RetabLoop()
9092
endfunc
9193

9294
func Test_retab_endless()
95+
" FIXME: why does this hang on MS-Windows?
96+
CheckNotMSWindows
97+
9398
" inside try/catch we catch the error message
9499
new
95100
call setline(1, "\t0\t")
@@ -105,7 +110,7 @@ func Test_retab_endless()
105110
endfunc
106111

107112
func Test_nocatch_retab_endless()
108-
" FIXME: why does this hang on MS-Windows?
113+
" FIXME: does this hang on MS-Windows?
109114
CheckNotMSWindows
110115

111116
" not inside try/catch an interrupt is generated to get out of loops

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,8 @@ static char *(features[]) =
734734

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
5104,
737739
/**/
738740
5103,
739741
/**/

0 commit comments

Comments
 (0)