File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,11 @@ endfunc
89
89
function RunTheTest (test)
90
90
echo ' Executing ' . a: test
91
91
if exists (" *SetUp" )
92
- call SetUp ()
92
+ try
93
+ call SetUp ()
94
+ catch
95
+ call add (v: errors , ' Caught exception in SetUp() before ' . a: test . ' : ' . v: exception . ' @ ' . v: throwpoint )
96
+ endtry
93
97
endif
94
98
95
99
call add (s: messages , ' Executing ' . a: test )
@@ -104,7 +108,11 @@ function RunTheTest(test)
104
108
endtry
105
109
106
110
if exists (" *TearDown" )
107
- call TearDown ()
111
+ try
112
+ call TearDown ()
113
+ catch
114
+ call add (v: errors , ' Caught exception in TearDown() after ' . a: test . ' : ' . v: exception . ' @ ' . v: throwpoint )
115
+ endtry
108
116
endif
109
117
110
118
" Close any extra windows and make the current one not modified.
@@ -221,3 +229,5 @@ call append(line('$'), s:messages)
221
229
write
222
230
223
231
qall !
232
+
233
+ " vim: shiftwidth = 2 sts = 2 expandtab
Original file line number Diff line number Diff line change @@ -764,6 +764,8 @@ static char *(features[]) =
764
764
765
765
static int included_patches [] =
766
766
{ /* Add new patch number below this line */
767
+ /**/
768
+ 88 ,
767
769
/**/
768
770
87 ,
769
771
/**/
You can’t perform that action at this time.
0 commit comments