]> granicus.if.org Git - vim/commitdiff
patch 8.2.3457: MS-Windows Vim9: test executed and fails v8.2.3457
authorBram Moolenaar <Bram@vim.org>
Sun, 26 Sep 2021 19:14:39 +0000 (20:14 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 26 Sep 2021 19:14:39 +0000 (20:14 +0100)
Problem:    MS-Windows Vim9: test executed and fails.
Solution:   Add extra check for not being on MS-Windows.

src/testdir/test_vim9_script.vim
src/version.c

index 313bfbcf05a74b3008f84142dd4bcfd01d54d5c2..b71978a3c5aeff4329b4287523478c83e446e79e 100644 (file)
@@ -4278,6 +4278,10 @@ def Test_no_unknown_error_after_error()
   if !has('unix') || !has('job')
     throw 'Skipped: not unix of missing +job feature'
   endif
+  # FIXME: this check should not be needed
+  if has('win32')
+    throw 'Skipped: does not work on MS-Windows'
+  endif
   var lines =<< trim END
       vim9script
       var source: list<number>
index 5c4eca6aa0ae4008a6c29fd703d8a38a7f216fa8..0046bbd958517f9ccf4f07606a5d0d7b0cc6ac9c 100644 (file)
@@ -757,6 +757,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    3457,
 /**/
     3456,
 /**/