changeset 32635:73fabd4e2259 v9.0.1649

patch 9.0.1649: syntax test failure causes script to abort Commit: https://github.com/vim/vim/commit/c6530c9d6860fcc5074371f84768be82bae597f6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 23:04:11 2023 +0100 patch 9.0.1649: syntax test failure causes script to abort Problem: Syntax test failure causes script to abort. Solution: Fix appending string to list.
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Jun 2023 00:15:03 +0200
parents 12b98f047368
children b03e568da2b9
files runtime/syntax/testdir/runtest.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/syntax/testdir/runtest.vim
+++ b/runtime/syntax/testdir/runtest.vim
@@ -163,7 +163,7 @@ for fname in glob('input/*.*', 1, 1)
 
       call delete('done/' .. root)
 
-      call failed_tests->extend(root)
+      eval failed_tests->add(root)
       if len(failed_tests) > MAX_FAILED_COUNT
 	call Message('')
 	call Message('Too many errors, aborting')
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1649,
+/**/
     1648,
 /**/
     1647,